I am trying to get started with machine learning, so I have installed the packages: numpy, Scikit-learn, matplotlib, scipy
. Some I have installed directly from pip with:
python -m pip install "package name"
and and others i have downloaded the binary files and then installed with pip
. It shows no errors when I import matplotlib, numpy
and sklearn
, but when I write:
from sklearn import svm
it gives me the error:
ImportError: cannot import name 'svm'
I am on Python 3.5.1 and on Windows 10. Does anyone have any solutions?