安装autogluon时报错:ERROR pips dependency resolver does not currently take into account all the packages that are installed This behaviour is the source of the following dependency conflictsspyder 425 requ
这个错误提示是因为安装 autogluon 时,pip 无法解决依赖冲突问题,主要是因为 Spyder 版本的要求和 autogluon 的要求不一致。解决方法如下:
1.升级 pyqt5 和 pyqtwebengine:
pip install pyqt5==5.12 pyqtwebengine==5.12
2.卸载 Spyder:
pip uninstall spyder
3.安装 autogluon:
pip install autogluon
这样就可以成功安装 autogluon 了。如果你需要使用 Spyder,可以在安装完 autogluon 后重新安装 Spyder,但需要注意版本兼容性。
原文地址: https://www.cveoy.top/t/topic/cOJS 著作权归作者所有。请勿转载和采集!