Commit a94ecfb1 authored by Josh Harris's avatar Josh Harris Committed by GitHub

Update jupyter_notebook_config.py

Latest release of notebook (5.7.0) introduces bug when `c.NotebookApp.ip` is set to '*'. See https://github.com/jupyter/notebook/issues/3946 for details.
parent 137a295f
...@@ -8,7 +8,7 @@ import errno ...@@ -8,7 +8,7 @@ import errno
import stat import stat
c = get_config() c = get_config()
c.NotebookApp.ip = '*' c.NotebookApp.ip = '0.0.0.0'
c.NotebookApp.port = 8888 c.NotebookApp.port = 8888
c.NotebookApp.open_browser = False c.NotebookApp.open_browser = False
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment