用pytorch官网命令 安装pytorch1.10.1+CUDA11.1报错

因为服务器的cuda是11.1的所以需要安装历史版本
复制官网的命令

CUDA 11.1
pip install torch==1.10.1+cu111 torchvision==0.11.2+cu111 torchaudio==0.10.1 -f https://download.pytorch.org/whl/cu113/torch_stable.html

但是报错
pip install torch1.10.1+cu111 torchvision0.11.2+cu111 torchaudio==0.10.1 -f

https://download.pytorch.org/whl/cu113/torch_stable.html
Looking in links: https://download.pytorch.org/whl/cu113/torch_stable.html
ERROR: Could not find a version that satisfies the requirement torch1.10.1+cu111 (from versions: 1.4.0, 1.5.0, 1.5.1, 1.6.0, 1.7.0, 1.7.1, 1.8.0, 1.8.1, 1.9.0, 1.9.1, 1.10.0, 1.10.0+cu113, 1.10.1, 1.10.1+cu113, 1.10.2, 1.10.2+cu113, 1.11.0, 1.11.0+cu113, 1.12.0, 1.12.0+cu113, 1.12.1, 1.12.1+cu113, 1.13.0)
ERROR: No matching distribution found for torch
1.10.1+cu111

仔细看它上面的链接是https://download.pytorch.org/whl/cu113/torch_stable.html
肯定找不到cu111啦
所以只需要更改链接为https://download.pytorch.org/whl/torch_stable.html
就可以正常下载了

你可能感兴趣的:(pytorch,python,深度学习)