Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialOzaveshe Balogun
Front End Web Development Techdegree Student 20,459 PointsHi. i get this error each time i tried to run python ml.py. What am i doing wrong?
(MachineLearning) C:\Users\Zbook\Desktop>python ml.py Traceback (most recent call last): File "ml.py", line 1, in <module> from sklearn.dataset import load_iris ModuleNotFoundError: No module named 'sklearn'
whats wrong here ?
2 Answers
KRIS NIKOLAISEN
54,971 PointsIf you haven't done so you need to install scikit-learn
I got this to work in a workspace with:
pip install -U scikit-learn
Also note the python code is datasets with an s at the end:
from sklearn.datasets import load_iris
iris = load_iris()
print(list(iris.target_names))
Ozaveshe Balogun
Front End Web Development Techdegree Student 20,459 PointsThank you very much. It worked