您现在的位置是:首页 >学无止境 >在云服务器上部署jupyter服务网站首页学无止境

在云服务器上部署jupyter服务

lelege01 2023-07-23 16:04:16
简介在云服务器上部署jupyter服务

1.准备一台云服务器,阿里云、腾讯云都可以,并且远程登陆,在云服务器的安全组中配置8888的访问端口,因为jupyter默认的访问端口是8888,如下述步骤;以阿里云服务器的centos系统为例
在这里插入图片描述
在这里插入图片描述
2.使用以下命令在服务器中安装python以及pip

sudo yum install python3 python3-pip

更新服务器中的pip

sudo pip3 install --upgrade pip

3.使用pip安装Jupyter NoteBook

sudo pip3 install notebook

配置jupyter的默认配置文件

jupyter notebook --generate-config

之后输入指令设置密码,保存密钥

ipython

在这里插入图片描述
4.之后运行jupyter notebook

sudo jupyter notebook

此时有的人可能会出现,这样的内容,是因为sudo的权限中没有jupyter,我们切换为普通的用户执行即可

sudo: jupyter: command not found

这时我们在服务器远程连接中输入以下命令即可

jupyter notebook

进而会出现

Running as root is not recommended. Use --allow-root to bypass.

此时我们运行jupyter notebook的指令得切换为,如果需要后台运行,只需在如下的命令末尾添加 &即可在后台运行,此时即使关掉服务器的连接,依然可以访问。

jupyter notebook --allow-root   //允许用户root远程输入密码操作

后台运行

nohup jupyter notebook --allow-root &

看到如下信息即运行成功
在这里插入图片描述
输入配置jupyter文件内时设置的密码即可在线访问jupyter
在这里插入图片描述
测试python环境
在这里插入图片描述

风语者!平时喜欢研究各种技术,目前在从事后端开发工作,热爱生活、热爱工作。