linux下配置Docker的jupyter notebook环境

jupyter notebook环境配置备忘:

1、安装:pip install jupyter

2、配置:

1)生成配置文件:jupyter notebook --generate-config

2)打开配置文件编辑:vim /root/.jupyter/jupyter_notebook_config.py

主要配置远程可访问:

 配置密码,可先通过jupyter notebook password生成,密码保存Jason文件中(/root/.jupyter/jupyter_notebook_config.json),把文件中的密文复制给c.NotebookApp.password。

 

linux下配置Docker的jupyter notebook环境_第1张图片 

 特别要注意c.NotebookApp.port的配置,这里配置的是docker容器和服务器映射的端口,如Docker容器10071端口和服务器端口8888映射。

3、运行:jupyter notebook --allow-root

远程打开浏览器输入:http://ip:8888/tree即可。注意这里的8888是服务器端口,对应Docker的10071(配置在jupyter文件中)

 

你可能感兴趣的:(Linux)