搭建远程 Jupyter Notebook
程序员文章站
2022-06-01 12:44:31
...
安装jupyter notebook
pip install jupyter notebook
将jupyter notebook 加入环境变量
即将 /usr/local/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 &
上一篇: 关于优化Eclipse中代码补全自动提示
推荐阅读
-
windows系统中Python多版本与jupyter notebook使用虚拟环境的过程
-
windows系统下jupyter notebook使用虚拟环境
-
实用Jupyter Notebook扩展工具——提升你的工作效率
-
Jupyter Notebook使用 tqdm显示进度条(单行显示)
-
jupyter notebook中出现ValueError: signal only works in main thread 报错 即 长时间in[*] 解决办法
-
anaconda 环境新建/删除/拷贝 jupyter notebook上使用python虚拟环境 TensorFlow
-
非线性函数的最小二乘拟合——兼论Jupyter notebook中使用公式 [原创]
-
基于jupyter notebook的python编程(Win10通过OpenCv-3.4.1进行人脸口罩数据集的模型训练并进行戴口罩识别检测)
-
Jupyter notebook 创建、切换Anaconda(Python)虚拟环境
-
如何修改通过Anaconda安装的jupyter notebook的工作目录