ModuleNotFoundError: No module named 'sklearn.impute'


(~ ̄▽ ̄)~

當我在 jupyter notebook 輸入 from sklearn.impute import SimpleImputer 是它報錯顯示:

ModuleNotFoundError: No module named 'sklearn.impute'

原因

  • 可能是因為自己的 scikit-learn 庫版本太低,需要將其更新到 0.20 版本或以上。

查看安裝包

  • 在 anaconda prompt 輸入pip listconda 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/

✿✿ヽ(°▽°)ノ✿


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM