Could not find a version that satisfies the requirement torch==1.13.1+cu117
时间: 2023-10-15 07:04:37 浏览: 164
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
您好!对于您的问题,torch==1.13.1 cu117的安装要求可能是错误的。请确保您使用的是正确的安装命令和版本号。另外,cu117可能是指CUDA的版本号,您需要根据您的系统和CUDA版本选择正确的torch版本。
安装torch的推荐方式是使用pip命令:
```shell
pip install torch==1.7.1+cu110 -f https://download.pytorch.org/whl/torch_stable.html
```
请注意,cu110代表CUDA 11.0版本,您可以根据您的CUDA版本替换为适当的版本号。
如果您仍然遇到问题,请提供更多详细信息,我会尽力帮助您解决。
阅读全文