远程访问jupyter notebook

Posted gooneybird

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了远程访问jupyter notebook相关的知识,希望对你有一定的参考价值。

1. 生成配置文件

$jupyter notebook --generate-config

2. 生成密码

打开python,创建密码

>>> from notebook.auth import passwd
>>> passwd()
Enter password: 
Verify password: 
‘sha1:xxx...‘

3. 修改默认配置文件

$vim ~/.jupyter/jupyter_notebook_config.py 
修改下面几行

c.NotebookApp.allow_remote_access = True
c.NotebookApp.ip = ‘*‘ c.NotebookApp.password = u‘sha:xxx...‘ c.NotebookApp.open_browser = False c.NotebookApp.port = 8888 #随便指定一个端口

4. 启动jupyter notebook

$jupyter notebook

 

本文转自https://www.cnblogs.com/yangxiaolan/p/5778305.html,有修改。

 

以上是关于远程访问jupyter notebook的主要内容,如果未能解决你的问题,请参考以下文章

远程访问jupyter notebook

远程访问jupyter notebook

设置 jupyter notebook 可远程访问

Jupyter notebook远程访问linux服务器

Windows配置远程访问的Jupyter Notebook服务器

远程访问 WSL2 Jupyter notebook