赞
踩
转载说明:本文来自刘洋洋科学网博客。
链接地址:http://blog.sciencenet.cn/blog-3031432-1078057.html
经过我的实践,第一种方法好像改了没啥用?但是,这确实是通用的jupyter notebook 的默认目录路径修改方法,个人觉得第二种方法比较实用!
1 永久更改Jupyter notebook默认目录路径
1) 创建Jupyter notebook的配置文件jupyter_notebook_config.py,在终端中输入:
$ jupyter notebook --generate-config
2) 打开jupyter_notebook_config.py,找到如下文字:
- ## The default URL to redirect to from `/`
- #c.NotebookApp.default_url = '/tree'
将其修改为:
- ## The default URL to redirect to from `/`
- c.NotebookApp.default_url = '/tree/Coding'
此时,Jupyter notebook的默认目录路径就变成了/home/Coding, 即Users/lab/Coding
然后,打开终端直接输下列命令就好:
lab@Sukie:~/Coding$ jupyter notebook
2.单次更改Jupyter notebook默认目录路径
1)在终端中cd到目标目录:
cd ~/Coding
2) 打开jupyter notebook终端:
lab@Sukie:~/Coding$ jupyter notebook
注:该方法的前提是不对Jupyter notebook的配置文件jupyter_notebook_config.py
做任何更改。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。