我想使用Emacs作为iPython notebooks / Jupyter Notebook(包含ein)的主编辑器。我想问你是否有办法在不需要打开网络浏览器的情况下运行服务器。
答案 0 :(得分:59)
这是你想要的吗?
$ ipython notebook --no-browser
修改强>
现在你应该使用
$ jupyter notebook --no-browser
自
ipython notebook
已弃用,将在以后的版本中删除。 您可能希望将来使用jupyter notebook
答案 1 :(得分:24)
如果您不想一直输入ipython notebook --no-browser
,
for ipython 4.0 with jupyter:
生成配置
jupyter notebook --generate-config
它会在某个地方创建一个文件,比如
win:C:\Users\[YouUserName]\.jupyter\jupyter_notebook_config.py
linux:~/.jupyter/jupyter_notebook_config.py
将c.NotebookApp.open_browser = False
添加到此文件中。
全部完成!