jupyter 设置远程访问

在vps上安装jupyter,设置远程访问。

0. 安装jupyter

1
pip install jupyter

1. 生成密码

打开python:

1
2
from notebook.auth import passwd
passwd()

根据提示输入密码,得到类似下面的密文:
‘sha1:ce23d945972*********’
复制下来。

2. 生成配置文件:

1
2
jupyter notebook --generate-config
# 生成完可以看到配置文件的存储位置

3. 修改配置文件

sudo nano jupyter_notebook_config.py

1
2
3
4
c.NotebookApp.ip = '*'
c.NotebookApp.password = u'sha:ce..粘贴密文..'
c.NotebookApp.open_browser = False
c.NotebookApp.port = 3333

4. 启动jupyter

1
nohup jupyter notebook  &

5. 远程登录

试试打开 http://xxx.xxx.xxx.xxx:3333
输入第一步设置的密码即可