Command prompt does not stop when trying to launch ipython notebook

Asked 2 years ago, Updated 2 years ago, 111 views

If you install Anaconda in Windows 10 and try to launch ipython notebook at a command prompt, the command prompt will continue to process.The ipython notebook is up and ready to use.
Please let me know if anyone knows anything.

command prompt screen

python anaconda

2022-09-30 17:36

1 Answers

The comments seem to have been resolved, so I will edit and transfer the answers.

Solution with Command Line Options

If the logging level is set to DEBUG, try adding --log-level=CRITICAL to the optional switch at the command line.

>ipython --log-level=CRITICAL

Resolution by Configuration Change

You must enter --log-level=CRITICAL every time (on the optional switch on the command line) to start successfully.
Can't I save my settings somewhere?

Try running ipython notebook --generate-config first.
After executing it, I think a file called ~/.jupyter/jupyter_notebook_config.py has been created.
Add c.Application.log_level=50 to this jupyter_notebook_config.py.


2022-09-30 17:36

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.