ERROR: Could not find a version that satisfies the requirement torch==1.7.1+cpu ERROR: No matching distribution found for torch==1.7.1+cpu
时间: 2023-08-21 11:34:36 浏览: 231
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
如果您使用的是CPU版本的PyTorch,可以尝试使用以下命令安装PyTorch:
```
pip install torch==1.7.1+cpu -f https://download.pytorch.org/whl/torch_stable.html
```
如果您仍然遇到问题,请检查您的Python版本是否与您下载的PyTorch版本兼容。您可以在PyTorch网站上找到有关如何安装适当版本的详细信息。
阅读全文