怎样更改jupyter的默认路径

怎样更改jupyter的默认路径?

修改jupyter-notebook默认路径

相关推荐:jupyter教程

1.在windows的cmd中输入 

jupyter notebook --generate-config

2.可以在路径D:User用户名.jupyter中找到jupyter_notebook_config.py文件。

3.打开jupyter_notebook_config.py

找到

The directory to use for notebooks and kernels.
c.NotebookApp.notebook_dir = ''

将#c.NotebookApp.notebook_dir = ''修改为

c.NotebookApp.notebook_dir = u'C:Users用户名DocumentsJupyter_Projects'

其中 Jupyter_Projects是我的工作目录,两个反斜杠,其中一个是转义字符。

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

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