1、添加jupyter_notebook_config.py配置文件
· 对于Windows系统,打开Anaconda Prompt并输入以下命令:
jupyter notebook --generate-config
执行命令后就会生成名为jupyter_notebook_config.py
的配置文件。
同时窗口会显示该配置文件的路径,例如C:\Users\user\.jupyter\jupyter_notebook_config.py
· 对于Linux系统,打开终端直接输入以下命令
jupyter notebook --generate-config
执行命令后就会生成名为jupyter_notebook_config.py
的配置文件。
同时窗口会显示该配置文件的路径,例如/home/user/.jupyter/jupyter_notebook_config.py
。
2、修改jupyter_notebook_config.py配置文件
根据上面的文件路径,打开文件jupyter_notebook_config.py
找到这一行:
#c.NotebookApp.notebook_dir=''
在''中添加你想要的文件路径,并去掉#,例如:
c.NotebookApp.notebook_dir='C:\Users\user\workspace'
最后,在对应的文件路径下创建这个文件夹,否则打开jupyter notebook会报错。