欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Jupyter 配置访问密码

程序员文章站 2022-05-29 07:57:40
...

1. 参考文档

2. Jupyter 设置密码

→ jupyter notebook --generate-config
→ jupyter notebook password

3. 修改配置文件

修改 ~/.jupyter/jupyter_notebook_config.py 来做一些定制化配置。

c.NotebookApp.notebook_dir = '/opt/yumingmin/notebooks'
c.NotebookApp.ip = '*'
c.NotebookApp.open_browser = False

4. 设置启动脚本

创建 start_jupyter.sh 脚本。

nohup jupyter notebook --no-browser >> logs/jupyter.log &

注意改变文件执行权限,使用 chmod 777 start_jupyter.sh ,然后执行 ./start_jupyter.sh 即可。