我有一个愚蠢的问题。我正在使用Intellij IDE开发Pyhton。我正在尝试导入以下内容:
from sklearn.preprocessing import Imputer
但是,我收到以下错误:
Traceback(最近一次调用最后一次):来自sklearn.preprocessing import Imputer
你能帮忙解决这个问题吗?
答案 0 :(得分:1)
解决方案是使用最新版本的 scikit-learn 库。使用以下命令安装它(在 pip 之前有时需要 sudo ):
pip (or, pip3) install scikit-learn=0.19.1