在没有 运行 网络浏览器的情况下启动 IPython 笔记本服务器?
Start IPython notebook server without running web browser?
我想使用 Emacs 作为 iPython notebooks/Jupyter Notebook(带有包 ein)的主编辑器。我想问你有没有办法不用打开浏览器就可以运行服务器。
这是你想要的吗?
$ ipython notebook --no-browser
编辑
现在你应该改用
$ jupyter notebook --no-browser
自从
ipython notebook
is deprecated and will be removed in future versions.
You likely want to use jupyter notebook
in the future
如果您不想一直输入 ipython notebook --no-browser
,
对于 ipython 4.0 和 jupyter:
生成配置
jupyter notebook --generate-config
它会在某个地方创建一个文件,比如
获胜:C:\Users\[YouUserName]\.jupyter\jupyter_notebook_config.py
linux: ~/.jupyter/jupyter_notebook_config.py
将 c.NotebookApp.open_browser = False
添加到此文件。
全部完成!
我想使用 Emacs 作为 iPython notebooks/Jupyter Notebook(带有包 ein)的主编辑器。我想问你有没有办法不用打开浏览器就可以运行服务器。
这是你想要的吗?
$ ipython notebook --no-browser
编辑
现在你应该改用
$ jupyter notebook --no-browser
自从
ipython notebook
is deprecated and will be removed in future versions. You likely want to usejupyter notebook
in the future
如果您不想一直输入 ipython notebook --no-browser
,
对于 ipython 4.0 和 jupyter:
生成配置
jupyter notebook --generate-config
它会在某个地方创建一个文件,比如
获胜:
C:\Users\[YouUserName]\.jupyter\jupyter_notebook_config.py
linux:
~/.jupyter/jupyter_notebook_config.py
将
c.NotebookApp.open_browser = False
添加到此文件。
全部完成!