添加PPA
sudo add-apt-repository ppa:jonathonf/python-3.6
如果报错
则使用命令:(更新软件源)
sudo apt-get update
然后安装
sudo apt-get install python-software-properties
apt-get install apt-file
apt-file update
apt-get install software-properties-common
sudo add-apt-repository ppa:deadsnakes/ppa //替代sudo add-apt-repository ppa:jonathonf/python-3.6
如果执行python3.6安装命令(sudo apt-get install python3.6),则先更新apt-get
sudo apt-get update
sudo apt-get install python3.6
调整python3优先级
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.5 1
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 2
更改默认值,从python2调整为python3
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 150
下载miniconda,清华镜像地址: 清华镜像,自用版本下载链接:
https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-py38_4.10.3-Linux-x86_64.sh
上传到服务器(mobaxterm可直接拖拽上传),执行命令:
bash Miniconda3-py37_4.10.3-Linux-x86_64.sh
一路输入yes,等到更改路径的地方自行修改:
取消base为默认虚拟环境:
conda config --set auto_activate_base false
运行以后不报错命令行依然显示base,则重启服务器(我遇到了)。
报错缺少gdbm:
sudo apt-get install python3.6-gdbm
conda创建虚拟环境
conda create -n pytorch1110 python=3.6
激活conda环境
conda activate pytorch1110
安装pytorch1.10.2版本
conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch
输入python,进入python命令行,接着输入以下命令:
import torch
print(torch.__version__)