Could not find a version that satisfies the requirement torchvison (from versions: none)
时间: 2023-11-10 12:07:14 浏览: 131
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误通常是由于版本不兼容导致的。请检查您的torchvision版本是否与您的PyTorch版本兼容。您可以通过以下命令来安装特定版本的torchvision:
```
pip install torchvision==0.9.0
```
请注意,此处的版本号应该与您的PyTorch版本兼容。如果您不确定,请查看PyTorch和torchvision的官方文档。
阅读全文