I am currently trying to install and run scikit-learn
. Although I was able to get it to install, I get an error when I try and import sklearn.feature_extraction.text
. What am I doing wrong?
from sklearn.feature_extraction.text import CountVectorizer
Traceback (most recent call last):
File "<pyshell#9>", line 1, in <module>
from sklearn.feature_extraction.text import CountVectorizer
ImportError: No module named text
>>>