jupyter notebook安装配置
1、linux下pip安装
$ pip install jupyter
2、生成配置文件
$ jupyter notebook --generate-config
Writing default config to: /home/xxx/.jupyter/jupyter_notebook_config.py
3、编辑配置文件
$ vi ~/.jupyter/jupyter_notebook_config.py
------------------------------
c.NotebookApp.ip = "*"
c.NotebookApp.password = ''
c.NotebookApp.port= 8888
------------------------------
4、启动,设置初始密码
$ jupyter-notebook
[I 14:05:51.746 NotebookApp] The Jupyter Notebook is running at:
[I 14:05:51.746 NotebookApp] http://[all ip addresses on your system]:8888/?token=e63ef214c4407eca5c830c667150eed11da197ae7f2f5fff
# 打开浏览器登陆http://ip:8888/
# 复制token到界面,设置密码