1. 程式人生 > >如何修改Anaconda的jupyter notebook的預設資料夾

如何修改Anaconda的jupyter notebook的預設資料夾

首先,開啟cmd輸入jupyter notebook –generate-config
系統會反饋預設資料夾路徑。
在.jupyter資料夾下,有一個檔名為jupyter_notebook_config.py檔案,使用spyder或其他IDE開啟
修改最後一行如下:
#c.NotebookApp.notebook_dir = ”
取消#符號
改為(引號內時地址):
c.NotebookApp.notebook_dir = ‘C:\D&P\jupyter notebook’
**C:\D&P\jupyter notebook可以替換為你想要儲存的位置

儲存後關閉。
找到jupyter notebook快捷方式,右鍵點選屬性;
在target裡,刪除最後的%USERPROFILE%。
開啟jupyter notebook,大功告成。
以上,針對anaconda3安裝的jupyter親測有效。