修改jupyter-notebook默认路径

2017-05-25  本文已影响675人  mudu86
  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\用户名\Documents\Jupyter_Projects' 其中 Jupyter_Projects是我的工作目录,两个反斜杠,其中一个是转义字符

上一篇 下一篇

猜你喜欢

热点阅读