美文网首页
修改jupyter-notebook默认路径

修改jupyter-notebook默认路径

作者: mudu86 | 来源:发表于2017-05-25 13:52 被阅读675次
  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是我的工作目录,两个反斜杠,其中一个是转义字符

相关文章

网友评论

      本文标题:修改jupyter-notebook默认路径

      本文链接:https://www.haomeiwen.com/subject/kbxzxxtx.html