jupyter notebook 更改启动默认目录
1.进入anaconda prompt
输入 jupyter notebook --generate-config
查看配置文件所在的目录
2.打开C:\Users\Administrator\.jupyter\jupyter_notebook_config.py
查找:NotebookApp.notebook_dir
,去除# ,并把引号内填入你想要的工作目录
## The directory to use for notebooks and kernels.
c.NotebookApp.notebook_dir = 'F:\Test\python'
3.重新输入命令启动notebook
jupyter notebook