Could not find a version that satisfies the requirement torch==1.9.1+cu111
时间: 2023-11-02 21:07:18 浏览: 496
torch==1.9.0+cu111&torchaudio==0.9.0 &torchvision==0.10.0+cu111
5星 · 资源好评率100%
在配置环境时,当你尝试安装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
```
阅读全文