Mac下改变Jupyter Notebook默认目录路径

永久更改默认目录路径

1)创建Jupyter Notebook的配置文件jupyter_notebook_config.py,在终端中输入:

1
$ jupyter notebook --generate-config

2) 打开jupyter_notebook_config.py,找到如下文字:

1
2
## The default URL to redirect to from `/`
#c.NotebookApp.default_url = '/tree'

将其修改为:

1
2
## The default URL to redirect to from `/`
c.NotebookApp.default_url = '/tree/Coding'

此时,Jupyter notebook的默认目录路径就变成了/home/Coding, 即Users/yliu/Coding

注:该方法只能通过home目录启动Jupyter Notebook,从其他目录启动会出现Jupyter Notebook网页无法显示的状态,因而该方法轻易不要使用。启动方式如下(终端):

1
$ yliu-16:52:26:~$ ipython notebook

而不能是:

1
$ yliu-16:53:53:Coding$ ipython notebook

单次更改目录路径

1)在终端中cd到目标目录:

1
$ cd ~/Coding

2) 在终端中输入

1
$ yliu-16:53:53:Coding$ ipython notebook

注:该方法的前提是不对Jupyter Notebook的配置文件jupyter_notebook_config.py做任何更改。

大爷,赏个铜板呗~