Search code examples
pythonubuntujupyter-notebookw3m

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?


Solution

  • 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.