I am new to python and installed it in windows OS and while following Google's machine learning tutorial on youtube, i encountered an error while importing the scikit package.
I installed the Anaconda package as shown in the tutorial but when importing sklearn i get an import error.
import sklearn
i also tried
from sklearn import tree
This is the error
Traceback (most recent call last):
File "C:\Users\Raj Asha\Desktop\hello-world.py", line 2, in <module>
from sklearn import tree
ModuleNotFoundError: No module named 'sklearn'
python version is 3.6.1
link to tutorial video https://www.youtube.com/watch?v=cKxRvEZd3Mw
