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

设置jupyter远程连接

程序员文章站 2022-05-28 23:30:11
...
  1. 配置生成文件
$jupyter notebook --generate-config

生成文件为/home/你的用户名/.jupyter/jupyter_notebook_config.py
2. 生成密码
法1: 利用ipython生成密码

In [1]: from notebook.auth import passwd
In [2]: passwd()
Enter password:
Verify password:
Out[2]: 'sha1:ce23d945972f:34769685a7ccd3d08c84a18c63968a41f1140274'

法2: 自动生成

$ jupyter notebook password
Enter password:  ****
Verify password: ****

生成的密码位于/home/你的用户名/.jupyter/jupyter_notebook_config.json。注意与配置文件区别,此文件为json文件。
3. 修改默认设置文件

c.NotebookApp.ip='*'
c.NotebookApp.password = u'sha:ce...刚才复制的那个密文'
c.NotebookApp.open_browser = False
c.NotebookApp.port =8888 #可自行指定一个端口, 访问时使用该端口
c.NotebookApp.allow_remote_access = True #[注1]

注1:如果不加,可能会出现错误KeyError: ‘allow_remote_access’

参考:
远程访问jupyter notebook
设置 jupyter notebook 可远程访问
jupyter 远程访问配置:KeyError: ‘allow_remote_access’