搭建远程 Jupyter Notebook

Posted Circle-C

tags:

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

安装jupyter notebook

pip install jupyter notebook

将jupyter notebook 加入环境变量

即将 /usr/local/bin 添加到环境变量

参考:Linux环境变量配置全攻略 - 悠悠i - 博客园 

生成配置文件

jupyter notebook --generate-config

配置密码

# 进入Python
from notebook.auth import passwd
passwd() # 随后设置密码

修改配置文件

vim /root/.jupyter/jupyter_notebook_config.py

编辑如下配置:

c.NotebookApp.password = '刚刚生成的密钥'

c.NotebookApp.ip = '0.0.0.0'

c.NotebookApp.open_browser = False

c.NotebookApp.port = 8888

c.NotebookApp.notebook_dir = 'xxx' # 工作目录

修改完毕之后按一下ESC,并输入:wq按回车退出

当前窗口运行

jupyter notebook --allow-root

后台运行

nohup jupyter notebook --allow-root >/dev/null 2>&1 &

随系统启动

编辑/etc/rc.local文件:

vi /etc/rc.local

在文件里面添加启动代码如下:

nohup jupyter notebook --allow-root >/dev/null 2>&1 &

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

手把手教你搭建远程Jupyter Notebook

搭建Python3的jupyter notebook服务器

如何基于Jupyter notebook搭建Spark集群开发环境

设置 jupyter notebook 可远程访问

Linux下配置jupyter notebook远程访问实战:配置Jupyter的连接密码启动jupyter服务远程访问jupyter(关闭防火墙)

远程访问jupyter notebook