No matching distribution found for torch==1.9.0+cu111
时间: 2024-01-13 08:13:10 浏览: 245
torch_cluster-1.6.0+pt112cu113-cp310-cp310-linux_x86_64.whl.zip
这个错误通常是由于找不到与你的CUDA版本匹配的PyTorch版本所致。 `cu111` 表示你正在使用CUDA 11.1版本,因此你需要安装与之兼容的PyTorch版本。
你可以尝试安装以下命令来获取与CUDA 11.1兼容的PyTorch版本:
```
pip install torch==1.9.0+cu111 -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
如果你使用的是conda,则可以使用以下命令:
```
conda install pytorch==1.9.0 torchvision==0.10.0 torchaudio==0.9.0 cudatoolkit=11.1 -c pytorch -c nvidia
```
注意,你需要确保你的系统上已经安装了CUDA 11.1。
阅读全文