安装conda 默认有jupyter的
如果没有,快速安装方式:
#安装
pip install notebook
# 启动
jupyter notebook
修改默认工作目录
首先进入~/.jupyter
如果没有 jupyter_notebook_config.py 这个文件
在命令行下运行如下命令:
jupyter notebook --generate-config
在次进入~/.jupyter 下,就有了这个文件,
打开 jupyter_notebook_config.py
找到如下位置并修改
## The directory to use for notebooks and kernels.
#工作目录为:“/Users/Mac/Documents/AdaProject/jupyter”
c.NotebookApp.notebook_dir = '/Users/Mac/Documents/AdaProject/jupyter'