note - docker环境下配置 jupyter noteb

2019-12-27  本文已影响0人  汉江岳

把 docker container 配置成 jupyter notebook 服务器用作python开发,有至少两点好处:

  1. 多个用户可以在浏览器使用
  2. 可视化画图方便,假设 jupyter notebook运行在服务器上
NV_GPU=0 nvidia-docker run -it --name notebook-server -p 7777:8888 -v /home/eswai:/eswai eswai/tf140py2:1.0  /bin/bash

jupyter notebook --generate-config
jupyter notebook password  # 设置密码

jupyter notebook --allow-root --ip=0.0.0.0 --port=7777 --no-browser &

关键点: jupyter notebook --help # 所有的命令都可以从着 --help里面查

参考:https://blog.csdn.net/eswai/article/details/79437428

上一篇下一篇

猜你喜欢

热点阅读