- 登陆远程服务器
- 生成配置文件
jupyter notebook --generate-config
- 生成密码
打开jupyter的python,创建一个密文的密码:
In [1]: from notebook.auth import passwd
In [2]: passwd()
Enter password:
Verify password:
Out[2]: 'sha:……………………'
把生成的密文‘sha:…’复制下来
- 修改默认配置文件
vim ~/.jupyter/jupyter_notebook_config.py
进行如下修改:
c.NotebookApp.ip = '*'
c.NotebookApp.password = u'sha:...刚才复制的那个密文'
c.NotebookApp.open_browser = False
c.NotebookApp.port = 8888
- 启动jupyter notebook:
jupyter notebook
- 远程访问
此时应该可以直接从本地浏览器直接访问http://address_of_remote:8888
就可以看到jupyter的登陆界面。