我希望jupyter笔记本使用其他东西而不是浏览器.有没有办法做到这一点?我看到emacs可以使用,但无法理解如何使用它.
如果有任何编辑器可以轻松设置jupyter请告诉我. 最佳答案 我相信你在看
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.它可能是你最接近你要求的,因为笔记本电脑被设计成一个网络应用程序.