修改Jupyter notebook預設檔案存取路徑
阿新 • • 發佈:2020-10-21
一、 新增jupyter_notebook_config.py配置檔案
(1) 開啟終端
Win+R+cmd或者直接在選單搜尋cmd
(2) 命令列中輸入 jupyter notebook --generate-config
會直接在C:\Users\Administrator.jupyter下產生一個配置檔案jupyter_notebook_config.py
二、 新增jupyter_notebook_config.py配置檔案
(1) 在對應目錄找到jupyter_notebook_config.py檔案
(2) 用記事本開啟檔案
(3) 點選“ctrl+F”去查詢c.NotebookApp.notebook_dir
(4) 在‘’中新增需要儲存的路徑,用雙斜槓\分割路徑(單斜槓\也可以,這是在Windows環境下),且刪除最前面的#
三、 修改Jupyter Notebook屬性中的目標
(1) 在“開始”選單的Anaconda檔案中找到Jupyter Notebook
右鍵,點選“屬性”,刪除目標中的%USERPROFILE%
再新增要儲存的位置:
然後點選確定即可。
重啟jupyter notebook就修改成功啦!