学习篇 | Jupyter 使用(notebook & hub)
1. JupyterHub
1.1 快速尝试
jupyterhub -f=/path/jupyter_config.py --no-ssl
1.2 长期后台运行
bash -c "nohup jupyterhub -f=/path/jupyter_config.py --no-ssl" > ~/jupyterhub.log 2>&1 &
1.3 帮助
jupyterhub --help
2. Jupyter Notebook
2.1 快速尝试
jupyter notebook --ip=0.0.0.0 --port=xxxx
2.2 长期后台运行
bash -c "nohup jupyter notebook --ip=0.0.0.0 --port=xxxx" > ~/jupyter.log 2>&1 &
2.3 帮助
jupyter notebook --help
原文地址:https://blog.csdn.net/be_clever/article/details/142446748
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!