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

jupyter notebook连接远程服务器配置

程序员文章站 2022-05-27 09:47:23
...
  1. 生成配置文件
jupyter notebook --generate-config
  1. 进入配置文件
vim ~/.jupyter/jupyter_notebook_config.py

3.修改相应的位置

c.NotebookApp.ip='*'
c.NotebookApp.open_browser = False
c.NotebookApp.port =XXXX #指定一个端口

4.在服务器输入jupyter notebook,启动jupyter notebook,并获得token
jupyter notebook连接远程服务器配置

5.在本地浏览器输入:服务器IP:XXXX(端口号可以自己指定),进入页面后重置密码即可。

相关标签: 其他