当前位置:   article > 正文

jupyter notebook配置流程_jupyter notebook 配置

jupyter notebook 配置
jupyter notebook --generate-config -y
# jupyter lab --generate-config
cd ~/.jupyter

# 需要手动生成文件
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout mykey.key -out mycert.pem

# set password
# 以9999为例,端口可能需要多尝试几个,在下面这里修改。修改完要重新跑下面的端口设置脚本。
NOTEBOOK_PORT=9999
# 在'lala300'这里输入你自己想设置的密码。
PASSWD=`python3 -c "from notebook.auth import passwd; print(passwd('xxxxx'))"`

echo "c.NotebookApp.password = '$PASSWD'" >> jupyter_notebook_config.py
echo "c.NotebookApp.ip = '*'" >> jupyter_notebook_config.py

# 修改完端口请重新跑这句脚本。
echo "c.NotebookApp.port = $NOTEBOOK_PORT" >> jupyter_notebook_config.py
echo "c.NotebookApp.certfile = '$PWD/mycert.pem'" >> jupyter_notebook_config.py
echo "c.NotebookApp.keyfile = '$PWD/mykey.key'" >> jupyter_notebook_config.py
echo "c.NotebookApp.open_browser = False" >> jupyter_notebook_config.py
# 最后后台起一个jupyter服务,然后便可通过web端访问到
# 建议:先cd到自己的目录下再起
nohup jupyter notebook --port=9999 > notebook.py3.log &
# 访问jupyter
https://111.11.111.11:9999/tree#notebooks
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码探险家/article/detail/862976
推荐阅读
相关标签
  

闽ICP备14008679号