怎样更改jupyter的默认路径[jupyter使用教程]

python

怎样更改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是我的工作目录,两个反斜杠,其中一个是转义字符。

以上是 怎样更改jupyter的默认路径[jupyter使用教程] 的全部内容, 来源链接: utcz.com/z/526647.html

回到顶部