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. tensorflow-intel 2.12.0 requires wrapt<1.15,>=1.11.0, but you have wrapt 1.15.0 which is incompatible.
时间: 2023-07-02 17:08:18 浏览: 159
pip 安装报错 error: Microsoft Visual C++ 14.0 is required. Get it with “Microsoft Visual C++ Build Tools
这个错误提示是因为你的tensorflow-intel版本要求wrapt版本在1.11.0到1.14.0之间,但你的wrapt版本是1.15.0,不兼容。可以尝试先卸载当前的wrapt,然后重新安装一个符合要求的版本,例如:
```
pip uninstall wrapt
pip install wrapt==1.14.0
```
如果还是出现依赖冲突的错误,可以考虑升级tensorflow-intel版本,或者使用虚拟环境来避免依赖冲突。
阅读全文