没有配置文件
1.安装了 Anaconda
,在Anaconda prompt
中输入以下命令。(也可以用来查找已有配置文件路径)
# jupyter lab
jupyter lab --generate-config
# jupyter notebook
jupyter notebook --generate-config
有配置文件
- 找到配置文件
jupyter_notebook_config.py
或者jupyter_lab_config.py
- 记得安装目录,直接找
C:\Users\用户\.jupyter\配置文件
- 参考未安装时的方法1
- 在文件资源管理器中搜索,很慢
- 使用 Everything 软件搜
- 修改配置文件
找到# c.ServerApp.root_dir =
,编辑插入以下代码块。
注意windows的放在地址符
\
前面要加上\
表示转义
## The directory to use for notebooks and kernels.
# Default: ''
c.ServerApp.root_dir = 'C:\\Users\\用户\\Documents\\project'
注意更改代码目录位置,使用单引号
,然后保存。至此已设置成功,重新打开JupyterLab试一试
这种配置方式会覆盖快捷方式的起始位置
参考文章