在不同的文件夹中启动 jupyter 实验室 (windows)
start jupyter lab in different folder (windows)
对于 jupyter 笔记本,我可以做:
jupyter notebook --ExtractOutputPreprocessor.enabled=False --notebook-dir C:/Bla
所以我为 jupyter 实验室尝试了类似的东西:
jupyter lab --app-dir C:/Bla
但得到:
JupyterLab Error
JupyterLab application assets not found in "C:/Bla"
Please run `jupyter lab build` or use a different app directory
我进行了几次 google 搜索,但没有得到明确的答案。有人可以启发我吗?谢谢
不要使用 --app-dir
- 这是用于 JupyterLab 的自定义部署。
notebook-dir
应该工作正常,以及 ServerApp.root_dir
:
jupyter lab --notebook-dir C:/Bla
或
jupyter lab --ServerApp.root_dir C:/Bla
除非您安装了非常旧版本的 JupyterLab(在这种情况下 - 升级)。
对于 jupyter 笔记本,我可以做:
jupyter notebook --ExtractOutputPreprocessor.enabled=False --notebook-dir C:/Bla
所以我为 jupyter 实验室尝试了类似的东西:
jupyter lab --app-dir C:/Bla
但得到:
JupyterLab Error
JupyterLab application assets not found in "C:/Bla"
Please run `jupyter lab build` or use a different app directory
我进行了几次 google 搜索,但没有得到明确的答案。有人可以启发我吗?谢谢
不要使用 --app-dir
- 这是用于 JupyterLab 的自定义部署。
notebook-dir
应该工作正常,以及 ServerApp.root_dir
:
jupyter lab --notebook-dir C:/Bla
或
jupyter lab --ServerApp.root_dir C:/Bla
除非您安装了非常旧版本的 JupyterLab(在这种情况下 - 升级)。