npross
npross

Reputation: 1888

Jupyter Notebooks, startup and stopping

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

Answers (2)

memebrain
memebrain

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

Dean Wong
Dean Wong

Reputation: 116

In fact, you could do this:

$ jupyter-notebook --browser="chrome" .

Upvotes: 1

Related Questions