Issue
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?
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.
Answered By - Nathaniel Verhaaren
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.