如何在没有broswer的情况下运行Jupyter笔记本(在不同的编辑器中)?

时间:2016-10-26 15:04:07

标签: editor jupyter-notebook

我希望jupyter笔记本使用除浏览器之外的其他内容。有没有办法做到这一点?我看到emacs可以使用,但无法理解如何使用它 如果有任何编辑器可以轻松设置jupyter请告诉我。

1 个答案:

答案 0 :(得分:2)

我相信你在看Start IPython notebook server without running web browser?。哪个指定......

$ ipython notebook --no-browser

我看了笔记本的来源,那个标志只在下面的变量

上设置了true或false
open_browser = Bool(True, config=True,
                    help="""Whether to open in a browser after starting.
                    The specific browser used is platform dependent and
                    determined by the python standard library `webbrowser`
                    module, unless it is overridden using the --browser
                    (NotebookApp.browser) configuration option.
                    """)

我建议查看jupyter/atom-notebook。它可能与您要求的最接近,因为笔记本电脑被设计为Web应用程序。