Could not find a version that satisfies the requirement torch==1.4.0 (from torchvision) (from versions: 1.7.1, 1.8.0, 1.8.1, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.10.2, 1.11.0, 1.12.0, 1.12.1, 1.13.0, 1.13.1, 2.0.0, 2.0.1) ERROR: No matching distribution found
时间: 2023-08-09 12:09:56 浏览: 229
Could not find a version that satisfies the requirement PIL (from versions: ) No matching distribu
这个错误是由于你安装的torchvision需要torch 1.4.0版本,但你的系统上没有安装该版本的torch。你可以尝试安装1.4.0版本的torch,或者更新torchvision到支持你已安装的torch版本的最新版本。你可以通过以下命令安装torch 1.4.0版本:
```
pip install torch==1.4.0
```
如果你已经安装了较新版本的torch,可以通过以下命令更新torchvision:
```
pip install --upgrade torchvision
```
阅读全文