Could not find a version that satisfies the requirement torch (from versions: ) No matching distribution found for torch
时间: 2023-08-14 22:09:59 浏览: 214
这个错误通常意味着您尝试安装的`torch`版本不兼容您当前的Python环境。请注意,PyTorch有不同的版本,每个版本都有特定的Python和操作系统要求。
首先,请确保您正在使用Python 3.x版本。然后,您可以尝试使用以下命令安装适用于您的操作系统和Python版本的PyTorch:
对于Windows和Linux:
```shell
pip install torch==1.9.0
```
对于macOS:
```shell
pip install torch==1.9.0+cpu -f https://download.pytorch.org/whl/torch_stable.html
```
如果您仍然遇到问题,请提供您的操作系统、Python版本和其他相关信息,以便我们提供更详细的帮助。
阅读全文