如何在没有浏览器的情况下运行 Jupyter Notebook(在不同的编辑器中)?

had*_*i k 7 editor jupyter-notebook

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

Con*_*res 2

我相信您正在查看启动 IPython 笔记本服务器而不运行 Web 浏览器?。其中指定...

$ ipython notebook --no-browser
Run Code Online (Sandbox Code Playgroud)

我查看了笔记本的源代码,该标志仅在以下变量上设置 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.
                    """)
Run Code Online (Sandbox Code Playgroud)

我建议查看jupyter/atom-notebook。这可能是最接近您所要求的,因为笔记本被设计为作为网络应用程序。