设置 jupyter notebook 可远程访问
程序员文章站
2022-05-28 23:45:40
...
安装步骤:
一:pip安装jupyter和相关依赖包
sudo pip install pyzmq
sudo pip install tornado
sudo pip install jinja2
sudo pip install jsonschema
sudo pip install jupyter
二: 生成配置文件
jupyter notebook --generate-config
注意:如果是root用户需要加上选项 --allow-root
三:生成密码(jupyter登录密码)
- 打开python3终端
from IPython.lib import passwd
passwd()
Enter password:
Verify password:
Out[2]: 'sha1:0e4123fc42:11d14djsayu23j1767631c1232871du81dg'
四:修改默认配置文件
vim ~/.jupyter/jupyter_notebook_config.py
修改下面的内容,可以自己添加
c.NotebookApp.ip='*'
c.NotebookApp.password = u'sha1:0e4123fc42:11d14djsayu23j1767631c1232871du81dg' # 上面生成的password
c.NotebookApp.open_browser = False
c.NotebookApp.port =9999 #指定一个端口
c.IPKernelApp.pylab = 'inline'
五:启动jupyter notebook
终端运行(关闭终端,程序退出):
jupyter-notebook
后台运行
nohup jupyter-notebook &
六:访问
浏览器直接访问http://ip_address:9999就可以看到jupyter的登陆界面