python jupyter 服务器端运行

119.91.116.248
下载
wget https://repo.anaconda.com/archive/Anaconda3-2020.11-Linux-x86_64.sh
安装
sh Anaconda3-2020.11-Linux-x86_64.sh
配置环境变量
vim /etc/profile
export PATH=/root/anaconda3/bin:$PATH 
重要的事情说三遍 环境变量马上生效
source /etc/profile

安装jupyter的相关插件
pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user

安装
yum install tmux
创建
tmux new -s test
退出
ctrl + B  
d
进入
tmux a -t test
查看创建得所有会话
tmux ls

运行jupyter
jupyter notebook --allow-root


本地 端口射映
ssh -N -L localhost:1234:localhost:8888 [email protected] -p 22

目前的 token
151bd8fd1c77d7cb0e02a991d0bd68eba50316d79767adc8





你可能感兴趣的:(python,python,jupyter,linux)