Reputation: 1888
When I started my Jupyter Notebook with, for example,
> jupyter notebook &
my browser would fire up automatically, and I could then choose my notebook to start working. This has stopped happening, and I now have a message such as:
execution error: "http://localhost:8889/tree?token=fd657c...9326aca6ed" doesn’t understand the “open location” message. (-1708)
How can I fix this problem?
Upvotes: 2
Views: 2832
Reputation: 403
Updates to the Mac OS seems to have caused problems. This thread is helpful, Jupyter Notebook issues.
You can set the browser explicitly in ".jupyter_notebook_config.py":
c.NotebookApp.browser = u'chrome'
And that has solved the error for some. It will probably be addressed in a future update if you can put up with the error for now.
Upvotes: 0
Reputation: 116
In fact, you could do this:
$ jupyter-notebook --browser="chrome" .
Upvotes: 1