转自http://blog.sina.com.cn/s/blog_591e424b0102wecu.html
ipython notebook 改名叫jupyter了。
在cmd中,输入“ipython notebook”或“jupyter notebook”打开notebook,此时cmd的当前路径即为notebook的工作路径。
另外,可通过设置config文件的方法来设置固定的工作路径。
方法是:
1 选择一个用于存放config文件的文件夹
2 在cmd中进入该文件夹的路径
3在cmd中 输入命令jupyter notebook --generate-config
4 此时在该文件夹中便生成一个notebook的config文件,文件名是“jupyter_notebook_config.py”
5 打开该文件,修改
“# The directory to use for notebooks and kernels.”下面的
“# c.NotebookApp.notebook_dir = ””为
“c.NotebookApp.notebook_dir = ‘指定的工作路径’”(注意将#号删除)
配置文件位置
C:\Users\用户名.jupyter\jupyter_notebook_config.py