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

ubuntu 18.04 配置jupyter notebook远程访问

程序员文章站 2022-05-29 07:57:28
...

今天在自己办公的电脑配置了能够远程访问的jupyter notebook,这里分享一下:

  1. 生成配置文件jupyter_notebook_config.py 

jupyter notebook --generate-config

2. 设置登录密码

jupyter notebook password

3. 修改配置文件

~/.jupyter/jupyter_notebook_config.py

#把前面的#去掉
c.NotebookApp.ip = '*'    #允许所有ip访问  
c.NotebookApp.open_browser = False    #不打开浏览器

然后启动jupyter notebook,在浏览器里面输入:host_ip:8888 就可以访问了。

参考文献

[1]. JupyterNotebook配置远程登录. https://blog.csdn.net/u014636245/article/details/83652126