pytorch填坑之路

1、pytorch版本要与CUDA版本对应

CUDA版本 Pytorch版本
7.5 0.4.1 ,0.3.0, 0.2.0,0.1.12-0.1.6
8.0 1.0.0 ,0.4.1
9.0 1.1.0,1.0.1, 1.0.0,0.4.1
9.2 1.6.0,1.5.0,1.4.0,1.2.0,0.4.1
10.0 1.2.0,1.1.0,1.0.1 ,1.0.0
10.1 1.6.0,1.5.0, 1.4.0 ,1.3.0
10.2 1.6.0,1.5.0

10.1版本较稳定,目前10.2版本的CUDA以及相应的Pytorch版本问题较多(各种奇怪的问题),头铁可以去尝试!!!

#一定要使用镜像(这里是清华的),要不慢死你
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
#安装较稳定cuda和pytorch版本(亲测)
conda install pytorch==1.4.0 torchvision==0.5.0 cudatoolkit=10.1

你可能感兴趣的:(Pytorch)