ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. torchvision 0.15.2 requires torch==2.0.1, but you have torch 1.7.0+cpu which is incompatible. Successfully installed dataclasses-0.6 future-0.18.3 torch-1.7.0+cpu
时间: 2024-03-17 12:42:13 浏览: 225
pip 安装报错 error: Microsoft Visual C++ 14.0 is required. Get it with “Microsoft Visual C++ Build Tools
这个错误是因为您安装了torchvision 0.15.2,它需要torch 2.0.1,但是您已经安装了torch 1.7.0+cpu,这两个版本不兼容。
您可以使用以下命令卸载torchvision 0.15.2,并安装与torch 1.7.0+cpu兼容的torchvision版本:
```
pip uninstall torchvision
pip install torchvision==0.8.1
```
请注意,0.8.1是与PyTorch 1.7.0兼容的torchvision版本。如果您使用其他版本的PyTorch,请检查官方文档以了解所需的torchvision版本。
如果您还遇到其他依赖冲突,请尝试使用较新版本的包或升级到与您正在使用的库兼容的Python版本。
阅读全文