题目描述:
Traceback (most recent call last):
File …
import sklearn
ModuleNotFoundError: No module named ‘sklearn’
解题思路一:
pip install sklearn
或
conda install sklearn
没用。。。
然后用
conda install scikit-learn
安装成功!!!(这个对我有效)
或者用:
pip install -U scikit-learn scipy matplotlib
pip3 install -U scikit-learn scipy matplotlib
参考:
https://stackoverflow.com/questions/46113732/modulenotfounderror-no-module-named-sklearn
https://sebhastian.com/python-no-module-named-sklearn/
版权声明:本文为qq_45934285原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。