tips: 请在未打开jupyter的情况下进行修改
command+空格——打开搜索——输入“终端“
终端输入下面的命令行,复制输出结果的路径
输出结果路径:/Users/hchen/.jupyter/jupyter_notebook_config.py
finder下使用Command+Shift+G 可以前往任何文件夹,输入刚才复制的路径:/Users/hchen/.jupyter/jupyter_notebook_config.py
使用command+F,来进行搜索在下面的代码块
## The directory to use for notebooks and kernels.
#c.NotebookApp.notebook_dir = ''
修改为
## The directory to use for notebooks and kernels.
c.NotebookApp.notebook_dir = '/Users/desktop‘
即删除第二行首个#,并在后面填入想要修改的路径名字
关闭该文件,并重新打开jupyter查看路径是否已进行更改。