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.
This commit is contained in:
Josh Harris
2018-09-24 19:29:22 -04:00
committed by GitHub
parent 137a295ff7
commit a94ecfb136

View File

@@ -8,7 +8,7 @@ import errno
import stat
c = get_config()
c.NotebookApp.ip = '*'
c.NotebookApp.ip = '0.0.0.0'
c.NotebookApp.port = 8888
c.NotebookApp.open_browser = False