Jupyter Notebook開啟路徑更改
阿新 • • 發佈:2019-02-06
如何對Jupyter Notebook 開啟路徑進行更改?
大抵有以下幾種方法,如果一個不行,可以嘗試另一個。
1、在命令提示符中輸入: jupyter notebook --generate-config 生成配置檔案
在~\.jupyter中開啟jupyter_notebook_config.py檔案
找到## The directory to use for notebooks and kernels.
#c.NotebookApp.notebook_dir = '路徑'
修改成:## The directory to use for notebooks and kernels.
c.NotebookApp.notebook_dir = '你想要的路徑'
2、右鍵Jupyter notebook快捷方式,開啟屬性:修改“起始位置”為你想要的路徑
刪除“目標”中最後字元:%USERPROFILE%
即可完成配置