(~ ̄▽ ̄)~
当我在 jupyter notebook 输入 from sklearn.impute import SimpleImputer
是它报错显示:
ModuleNotFoundError: No module named ‘sklearn.impute‘
pip list
或 conda list
后回车,可查看已经安装的包。pip install --upgrade scikit-learn==0.22.0 -i https://pypi.tuna.tsinghua.edu.cn/simple/
tips:这里使用的是清华镜像源。
pip install scikit-learn -i https://pypi.tuna.tsinghua.edu.cn/simple/
??ヽ(°▽°)ノ?
ModuleNotFoundError: No module named 'sklearn.impute'
原文:https://www.cnblogs.com/yang9165/p/12779526.html