搭建远程 Jupyter Notebook
Posted Circle-C
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了搭建远程 Jupyter Notebook相关的知识,希望对你有一定的参考价值。
安装jupyter notebook
pip install jupyter notebook
将jupyter notebook 加入环境变量
即将python所在的bin目录 /usr/local/python3/bin 添加到环境变量
生成配置文件
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搭建Spark集群开发环境
Linux下配置jupyter notebook远程访问实战:配置Jupyter的连接密码启动jupyter服务远程访问jupyter(关闭防火墙)