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 13:05:35 浏览: 245
这个错误通常是由于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驱动程序版本匹配的版本。
相关问题
ERROR: Could not find a version that satisfies the requirement torch==1.9.0+cu111 (from versions: 1.11.0, 1.12.0, 1.12.1, 1.13.0, 1.13.1, 2.0.0, 2.0.1) ERROR: No matching distribution found for torch==1.9.0+cu111
如果你在安装torch时遇到了这个错误,可能是因为你的pip版本过低。可以尝试先升级pip,然后再重新安装torch,具体命令如下:
```
pip install --upgrade pip
pip install torch==1.9.0+cu111 torchvision==0.10.0+cu111 torchaudio==0.9.0 -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
这个命令会先升级pip到最新版本,然后安装torch、torchvision和torchaudio。如果你的CUDA版本不是11.1,可以在链接中选择相应的版本进行安装。
Could not find a version that satisfies the requirement torch==1.9.1+cu111
在配置环境时,当你尝试安装torch==1.9.1 cu111时出现了错误信息"Could not find a version that satisfies the requirement torch==1.9.1 cu111"。这是因为没有找到满足此版本要求的torch安装包。
解决这个问题的方法是使用其他版本的torch安装包。你可以尝试安装torch==1.9.0 cu111版本,通过运行以下命令解决问题:
```
pip install torch==1.9.0 cu111 -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
如果上述命令不能解决问题,你也可以尝试使用以下命令安装torch==1.9.0 cu111版本:
```
pip install torch==1.9.0 cu111 -f https://download.pytorch.org/whl/torch_stable.html
```
阅读全文