ERROR: Could not find a version that satisfies the requirement torch (from versions: none) ERROR: No matching distribution found for torch
时间: 2023-06-30 18:10:45 浏览: 161
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误提示表明您尝试安装的torch版本不可用或不存在。请确保您已经正确安装了pip,并且您正在使用适合您Python版本的torch版本。您可以尝试使用以下命令安装最新版本的torch:
```
pip install torch
```
如果您仍然遇到问题,请尝试在安装命令中指定torch的版本,例如:
```
pip install torch==1.7.1
```
请注意,您需要根据您的操作系统和Python版本选择正确的torch版本。
阅读全文