怎么修改jupyter的工作路径?[jupyter使用教程]

python

修改Jupyter工作目录的方法:

1、使用jupyter notebook" title="jupyter notebook">jupyter notebook --generate-config指令获取当前Jupyter路径

(yankerp) Administrator@MZNOQLGC1WJQ0RT C:UsersAdministrator

# jupyter notebook --generate-config

Writing default config to: C:UsersAdministrator.jupyterjupyter_notebook_config.py

目前的路径在C:UsersAdministrator.jupyterjupyter_notebook_config.py

2、打开jupyter_notebook_config文件

打开文件找到c.NotebookAppxxxx定义 Jupyter notebook工作路径如下:

c.NotebookApp.notebook_dir = 'C:Jupyter-yankerpjupyter'

在上面的C:Jupyter-yankerpjupyter目录需要提前创建

修改c.NotebookApp.notebook_dir中的路径即可。

相关文章教程推荐:jupyter教程

以上是 怎么修改jupyter的工作路径?[jupyter使用教程] 的全部内容, 来源链接: utcz.com/z/526200.html

回到顶部