1.安装jupyter notebook
pip install jupyter notebook
注:前提安装好pip
2.查看是否安装成功
pip freeze |grep jupyter
3.生成配置文件
jupyter notebook --generate-config
注:完成后会显示生成位置
4.修改配置文件参数
4.0打开配置文件
vim ~/.jupyter/jupyter_notebook_config.py
4.1文件存放位置
c.NotebookApp.notebook_dir = '/xxx/xxxx' # notebook默认目录
4.2是否浏览器
c.NotebookApp.open_browser = False
4.3指定端口号
#c.NotebookApp.port = 8080
4.4ip
c.NotebookApp.ip = 'localhost'->c.NotebookApp.ip = '*'
5.设置密码
jupyter notebook password
6.打开jupyter服务
jupyter notebook
jupyter notebook --allow-root(root用户)
7.本地打开
ip:port