本地PC连接远程服务器jupyter全过程

1、服务器上创建虚拟环境

可以通过anaconda或者miniconda进行环境和包管理,miniconda 更轻

这里我们使用清华镜像文件下载会更快

下载:

bash 复制代码
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-py37_4.10.3-Linux-x86_64.sh

安装:

bash 复制代码
bash Miniconda3-py37_4.10.3-Linux-x86_64.sh

更新环境变量

bash 复制代码
source ~/.bashrc

然后就是要创建虚拟环境

bash 复制代码
conda create -n dplearn python=3.7.16

顺便添加清华镜像源

bash 复制代码
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
conda config --set channel_priority strict
conda install numpy

2、远程服务器上安装jupyter

进入虚拟环境,安装jupyter

bash 复制代码
conda activate dplearn
conda install jupyter notebook  # 安装jupyter notebook

生成jupyter配置文件

bash 复制代码
jupyter notebook --generate-config

设置密码

bash 复制代码
jupyter notebook password

修改jupyter 配置文件

bash 复制代码
cd ~/.jupyter

在jupyter_notebook_config.py中添加如下信息

python 复制代码
c.ServerApp.ip = '*'
c.NotebookApp.open_browser = False
c.ServerApp.port = 8888
c.ServerApp.password='123456'
c.NotebookApp.allow_root = True

上述步骤完成后,就可以在服务器指定目录下运行jupyter notebook,只有出现IP\token等信息才是配置成功

3、端口映射

在 PC 端做一个端口映射,即通过 ssh 隧道来将服务器端的8888端口号映射到本地(PC端)的某个端口(如8890):

bash 复制代码
ssh -N -f -L 8890:localhost:8888 [email protected]

-N: 不执行远程命令,只建立 SSH 连接。

-f: 将 ssh 进程置于后台运行。

-L: 指定一个本地监听端口,并将其流量转发到远程主机上的某个端口。

然后在本地PC上浏览器网址输入:localhost:8890,输入密码123456 就可以啦

相关推荐
宁zz12 小时前
乌班图安装jenkins
运维·jenkins
无名之逆13 小时前
Rust 开发提效神器:lombok-macros 宏库
服务器·开发语言·前端·数据库·后端·python·rust
大丈夫立于天地间13 小时前
ISIS协议中的数据库同步
运维·网络·信息与通信
cg501713 小时前
Spring Boot 的配置文件
java·linux·spring boot
暮云星影13 小时前
三、FFmpeg学习笔记
linux·ffmpeg
rainFFrain13 小时前
单例模式与线程安全
linux·运维·服务器·vscode·单例模式
GalaxyPokemon14 小时前
Muduo网络库实现 [九] - EventLoopThread模块
linux·服务器·c++
mingqian_chu14 小时前
ubuntu中使用安卓模拟器
android·linux·ubuntu
xujiangyan_15 小时前
nginx的反向代理和负载均衡
服务器·网络·nginx