jupyter notebook设置远程访问和密码
程序员文章站
2022-05-27 20:02:59
...
https://www.jianshu.com/p/642489051956
配置密码
jupyter notebook passwd
远程访问
首先产生配置文件
jupyter notebook --generate-config
然后
vim ~/.jupyter/jupyter_notebook_config.py
修改有允许所有ip链接
# c.NotebookApp.ip = 'localhost'
# 改为
c.NotebookApp.ip = '*'
wq退出保存