启动IPython笔记本服务器而不运行Web浏览器?

时间:2015-08-11 23:11:25

标签: python ipython jupyter-notebook

我想使用Emacs作为iPython notebooks / Jupyter Notebook(包含ein)的主编辑器。我想问你是否有办法在不需要打开网络浏览器的情况下运行服务器。

2 个答案:

答案 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:

  1. 生成配置

    jupyter notebook --generate-config
    

    它会在某个地方创建一个文件,比如

    win:C:\Users\[YouUserName]\.jupyter\jupyter_notebook_config.py

    linux:~/.jupyter/jupyter_notebook_config.py

  2. c.NotebookApp.open_browser = False添加到此文件中。

  3. 全部完成!