安装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 conflictsfeaturetools 120
这个错误提示是由于安装autogluon所需要的featuretools包要求安装dask和distributed的版本不同于已经安装的版本,导致了版本冲突。解决这个问题的方法是升级或降级dask和distributed的版本,使它们与featuretools所需要的版本匹配。可以尝试使用以下命令升级或降级dask和distributed:
升级:
pip install dask==2022.2.0 distributed==2022.2.0
降级:
pip install dask==2021.11.2 distributed==2021.11.2
然后再重新安装autogluon即可。
原文地址: https://www.cveoy.top/t/topic/coW6 著作权归作者所有。请勿转载和采集!