怎么修改jupyter的工作路径?

修改Jupyter工作目录的方法:

1、使用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教程

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » 怎么修改jupyter的工作路径?