当我在终端中编写jupyter notebook时,它不会打开notebook,而是会打开Jupyter tree。会有什么问题呢?
发布于 2017-08-12 02:29:18
您给出的命令应该首先在文件系统视图中打开Jupyter。然后从那里导航到一个notebook并双击它,这将在一个新的浏览器选项卡中打开该notebook。
发布于 2017-08-12 20:28:14
问题:当我在终端中写jupyter notebook时,它没有打开笔记本,它打开了Jupyter tree。会有什么问题呢?
Answer:您错过了笔记本的路径(比如notebook_to_open.ipynb)。使用类似以下命令的命令重试:
(windows)
jupyter notebook c:/path/to/your/notebook_to_open.ipynb(linux)
jupyter notebook ~/path/to/your/notebook_to_open.ipynbhttps://stackoverflow.com/questions/45641646
复制相似问题