相信很多小伙伴在第一次打开jupyter notebook时都会看到下图中的目录,但是又想把自己写的东西存到自己想放的位置,今天就教大家怎样修改jupyter notebook的工作空间。
第一:先打开cmd窗口,然后输入jupyter notebook的子命令
jupyter notebook --generate-config
生成默认配置文件。
C:\Users\WPKYZL>jupyter notebook --generate-config
Writing default config to: C:\Users\WPKYZL\.jupyter\jupyter_notebook_config.py
第二:然后去文件管理器按照路径C:\Users\WPKYZL\.jupyter\jupyter_notebook_config.py
找到配置文件jupyter_notebook_config.py
。
第三:然后用编辑器打开配置文件
jupyter_notebook_config.py
,并在搜索框中输入directory
,确定即可跳转到以下内容处。
## The directory to use for notebooks and kernels.
#c.NotebookApp.notebook_dir = ''
第四:然后自己建一个文件夹,并将文件夹的路径粘贴到#c.NotebookApp.notebook_dir = ''
这一行的单引号内,同时删除前面的#
号,然后保存,关闭。我的新建的文件夹路径是D:\PythonCode\MyJupyter
,所以修改后是这样的:
## The directory to use for notebooks and kernels.
c.NotebookApp.notebook_dir = 'D:\PythonCode\MyJupyter'
第五:当在cmd窗口再次输入jupyter notebook
命令,并在浏览器打开时即可看到已经修改。