(~ ̄▽ ̄)~
當我在 jupyter notebook 輸入 from sklearn.impute import SimpleImputer 是它報錯顯示:
ModuleNotFoundError: No module named 'sklearn.impute'
原因
- 可能是因為自己的 scikit-learn 庫版本太低,需要將其更新到 0.20 版本或以上。
查看安裝包
- 在 anaconda prompt 輸入
pip list或conda list后回車,可查看已經安裝的包。
更新包
- 指定版本更新
pip install --upgrade scikit-learn==0.22.0 -i https://pypi.tuna.tsinghua.edu.cn/simple/
tips:這里使用的是清華鏡像源。
安裝包
- 倘若沒有 scikit-learn 庫
pip install scikit-learn -i https://pypi.tuna.tsinghua.edu.cn/simple/
✿✿ヽ(°▽°)ノ✿
