3

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.stack.imgur.com/WhgqW.jpg

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

Arya
  • 1,382
  • 2
  • 15
  • 36

1 Answers1

4

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.

  • The line wasn't exactly the same, but I just created the config file and found the appropriate line. Thank you! – Arya Jan 10 '17 at 18:45
  • 1
    `NotebookApp.open_browser = False` didn't work but `c.NotebookApp.open_browser = False` did – Wes Dec 26 '17 at 20:45