ERROR: Could not find a version that satisfies the requirement torch==1.9.0+cpu (from versions: 1.8.0, 1.8.1, 1.9.0, 1.10.0, 1.10.1, 1.10.2, 1.11.0, 1.12.0, 1.12.1, 1.13.0, 1.13.1) ERROR: No matching distribution found for torch==1.9.0+cpu
时间: 2023-08-04 07:08:19 浏览: 275
Could not find a version that satisfies the requirement PIL (from versions: ) No matching distribu
这个错误信息说明您安装的 Torch 版本不支持 1.9.0+cpu 这个特定的版本。您可以尝试安装其他版本,比如 1.8.1 或者 1.10.2 等,看看是否能够解决问题。您可以在命令提示符或者终端中使用以下命令安装指定版本的 Torch:
```bash
pip install torch==1.8.1
```
或者
```bash
pip install torch==1.10.2
```
请注意,如果您正在使用 Windows 操作系统,并且使用的是 Python 3.9 版本,那么您需要安装 PyTorch 1.9.0+cpu 的 Windows 版本。您可以在 PyTorch 的官方网站上查找适合您的环境的版本。
阅读全文