Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jupyter opening up in w3c?

I've installed Jupyter via pip on the windows/ubuntu subsystem. Everything seems to be going well, however, when I try running Jupyter, it opens up the page in the w3m browser. Here is a screenshot: https://i.sstatic.net/WhgqW.jpg

When I close the browser, it behaves fine, but it's pretty annoying. How can I get it to not do that?

like image 663
Arya Avatar asked Aug 31 '25 06:08

Arya


1 Answers

From the documentation:

You can locate or create a configuration file at ~/.jupyter/jupyter_notebook_config.py. In that file, make sure that the appropriate setting is set to false:

NotebookApp.open_browser = False

In my file this setting is included but commented out by default, so you can just uncomment it and change the value if this is the case for you.

like image 200
Nathaniel Verhaaren Avatar answered Sep 02 '25 20:09

Nathaniel Verhaaren