1. 程式人生 > 實用技巧 >修改Jupyter notebook預設檔案存取路徑

修改Jupyter notebook預設檔案存取路徑

一、 新增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就修改成功啦!