ERROR: Could not find a version that satisfies the requirement torch==1.9.1+cu111 (from versions: 1.11.0, 1.11.0+cpu, 1.11.0+cu113, 1.11.0+cu115, 1.12.0, 1.12.0+cpu, 1.12.0+cu113, 1.12.0+cu116, 1.12.1, 1.12.1+cpu, 1.12.1+cu113, 1.12.1+cu116, 1.13.0, 1.13.0+cpu, 1.13.0+cu116, 1.13.0+cu117, 1.13.1, 1.13.1+cpu, 1.13.1+cu116, 1.13.1+cu117, 2.0.0, 2.0.0+cpu, 2.0.0+cu117, 2.0.0+cu118, 2.0.1, 2.0.1+cpu, 2.0.1+cu117, 2.0.1+cu118) ERROR: No matching distribution found for torch==1.9.1+cu111
时间: 2023-11-14 10:05:35 浏览: 292
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误通常是由于PyTorch的版本与您的CUDA驱动程序版本不匹配所致。您可以通过运行以下命令来安装与您的CUDA驱动程序版本匹配的PyTorch版本:
```
pip install torch==1.9.1+cu111 torchvision==0.10.1+cu111 torchaudio==0.9.1 -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
请注意,如果您的CUDA驱动程序版本不是11.1,则需要将上述命令中的“cu111”更改为与您的CUDA驱动程序版本匹配的版本。
阅读全文