虚拟环境配置
下载安装conda并设置国内镜像源
wget -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh
sh Miniconda3-latest-Linux-x86_64.sh
source .bashrc
# 添加镜像
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda
conda config --set show_channel_urls yes
安装pytorch
但是,以上安装都无法安装到自己想要的具体版本
比较困惑的地方,pytorch版本和torchvision版本对应问题 链接
其实只需要在pytorch和torchvision后添加版本号即可,例如
conda install pytorch==1.3.0 torchvision==0.4.1 cudatookit=10.1
验证
import torch
print(torch.__version__)#双下划线
安装各种包只需pip即可
pip install transformers==2.2.1
验证
import transformers
print(transformers.__version__)#双下划线
下次见(╹▽╹)