ERROR: No matching distribution found for torch==1.12.1+cu113
时间: 2024-01-13 13:11:36 浏览: 652
您可以尝试使用以下命令安装torch的特定版本:
```shell
pip install torch==1.12.1+cu113 -f https://download.pytorch.org/whl/torch_stable.html
```
这将从PyTorch官方网站下载适用于CUDA 11.3的torch版本。希望对您有所帮助!如果您还有其他问题,请随时提问。
相关问题
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
这个错误通常是由于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,可以在链接中选择相应的版本进行安装。
阅读全文