文章目录
Jupyter 安装和基本使用方法可见:
https://blog.csdn.net/lovechris00/article/details/123458990
1、生成秘钥
shell
jupyter notebook password
输入秘钥后,将生成秘钥文件,进入文件,复制那一串加密后de字符
2、修改配置
生成配置文件
shell
jupyter notebook --generate-config
我的位于 /home/xx/.jupyter/jupyter_notebook_config.py
在配置文件添加以下内容
shell
c.NotebookApp.ip = '*' # 表示允许任意ip访问
c.NotebookApp.open_browser = False # 运行时不打开本机浏览器
c.NotebookApp.port = 8094 # 使用的端口,随意设置
c.NotebookApp.password = u'argon2:$argon2id$v=19$m=10240,t=10,p=8$zegxxx' # 刚才复制出来的秘钥数据
c.NotebookApp.allow_remote_access = True #允许远程访问
c.NotebookApp.allow_root = True
- 注意,ip 不要设置为 访问的 ip,否则可能无法启动,并报错
OSError: [Errno 99] Cannot assign requested address
你也可以设置为 127.0.0.1
3、启动
shell
jupyter-notebook --ip=0.0.0.0 --port=8094
这样,你可以在本地访问服务地址了,如:
参考
OSError: [Errno 99] Cannot assign requested address
https://stackoverflow.com/questions/50374710/oserror-errno-99-cannot-assign-requested-address
伊织 2024-01-23(一) 深圳最冷这天
4-4-3-4 的我,总希望生活是无限