本人服务器的linux系统是ubuntu16.04,搭建jupyter notebook环境的过程如下:
- 使用pip安装jupyter:pip install jupyter
- 创建Jupyter默认配置文件:jupyter notebook --generate-config
- 然后使用ipython,当然使用之前先用pip安装一下,pip install ipython
- 输入下面代码,可以得到密钥
from notebook.auth import passwd
passwd()
如下的Out[2]行就是密钥
- 先进入根目录下,直接cd就可以进入根目录了,使用命令sudo vim .jupyter/jupyter_notebook_config.py设置密钥修改配置文件。
- 在文件末尾增加c.NotebookApp.password = u’sha1:XXXXXX’即可,其中XXXXX就是步骤4的密钥
- 使用如下命令jupyter notebook --ip=0.0.0.0 --no-browser --allow-root, 其中0.0.0.0就是你服务器的ip了
- 接着在浏览器输入0.0.0.0:8888就可以在web端使用jupyter notebook了,其中0.0.0.0就是你步骤7中使用的ip。