美文网首页
jupyter notebook 更换路径

jupyter notebook 更换路径

作者: 洋阳酱 | 来源:发表于2020-02-03 13:02 被阅读0次

    最近学习Python的时候,发现了 jupyter notebook 这个神器。初次使用,不会更改默认路径。查阅了一些资料,得以解决。

    默认路径

    1、查找配置文件

    首先找到你安装 jupyter 的文件路径,一般是在C盘>用户>(你自己的用户名)>.jupyter
    你先看一下,有没有Jupyter_notebook_config.py这个文件。

    如果有的话,直接跳过下一步,进入步骤3,更改路径
    如果没有的话,请看下一步

    2、生成jupyter notebook 配置文件

    如果你发现,你没有Jupyter_notebook_config.py这个文件,那你需要先生成一个

    打开Anaconda Prompt

    image.png

    输入jupyter notebook --generate-config

    然后你就可以在文件夹中看到这个文件了

    3、修改路径

    打开Jupyter_notebook_config.py文件,找到#c.NotebookApp.notebook_dir = ' ',改为c.NotebookApp.notebook_dir = '你自己要的路径',注意,把 # 去掉

    比如我想把默认路径改到D盘,我就改为
    #c.NotebookApp.notebook_dir = ' '
    c.NotebookApp.notebook_dir = 'D:\Python'

    然后保存文件

    这时候,输入jupyter notebook就可以启动了

    路径更改成功~

    参考文章

    1、jupyter notebook 改变工作路径
    2、jupyter更换路径,作者:aaa小菜鸡

    相关文章

      网友评论

          本文标题:jupyter notebook 更换路径

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