[python] 改變jupyter預設路徑與瀏覽器
這篇文章教如何改變 jupyter 開啟後的預設資料夾路徑
- 在cmd window輸入「jupyter notebook --generate-config」
C:\>jupyter notebook --generate-config Writing default config to: C:\Users\user\.jupyter\jupyter_notebook_config.py
- 到指定路徑下開啟該檔案「jupyter_notebook_config.py」
- 打開後搜尋「c.NotebookApp.notebook_dir」
- 先把注解符號刪除,再在 ' ' 內輸入想要的預設路徑,注意:路徑中有斜線的話,要以 "\\" 代替 "\"!
- 再搜尋「c.NotebookApp.browser」
- 先把注解符號刪除,再在 ' ' 內輸入想要的預設瀏覽器應用程式路徑(如chrome.exe),注意:路徑中有斜線的話,要以 "/" 代替 "\",且最後要%s!
- 存檔完成
- 在 cmd window 打開 jupyter notebook 就可以看到在預設路徑與使用指定瀏覽器囉
c.NotebookApp.notebook_dir = u'D:\\py'
c.NotebookApp.browser = u'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'
留言
張貼留言