auto-sklearn環境報錯 AttributeError: module 'pandas' has no attribute 'core'
- 2019 年 10 月 7 日
- 筆記
安裝了最新的 auto-sklearn 庫,運行例子是報錯
AttributeError: module 'pandas' has no attribute 'core'
最後發現是 pandas 庫的版本問題。安裝 auto-sklearn 時安裝的 pandas 版本是 0.25.1,這個版本有問題,需要安裝 0.22 版的 pandas。
重新安裝 pandas
pip install pandas==0.22
再次運行例子,問題解決。