本文基于Windows 10系統(tǒng),其他版本及類型的操作系統(tǒng)未測試過,不過設(shè)置方法可能類似。
安裝Anaconda以及jupyterlab之后,jupyterlab默認(rèn)的路徑為當(dāng)前用戶的用戶路徑赋除,一般在C:\Users[username],其中username為當(dāng)前用戶名非凌。當(dāng)jupyter notebook一般不會存在這個用戶目錄下贤重,而是在其他工作目錄。那么如何修改jupyterlab的默認(rèn)路徑清焕?
- 在Anaconda Navigator中運行Terminal:
- 查看Jupyter使用的配置文件在哪個目錄:
jupyter --config-dir
- 切換到該目錄并蝗,檢查是否存在配置文件:jupyter_notebook_config.py。如果不存在秸妥,使用以下命令創(chuàng)建一個:
jupyter notebook --generate-config
- 在配置文件jupyter_notebook_config.py中滚停,添加以下配置內(nèi)容:
## The directory to use for notebooks and kernels.
c.NotebookApp.notebook_dir = 'd:\\learning'
d:\learning為新的Jupyter目錄,可以替換成你自己的目錄粥惧。
- 從Anaconda重新運行JupyterLab
轉(zhuǎn)鏈接:http://www.reibang.com/p/03c6de17a50e