Hi, I am trying to follow the 101 training course provided by sklearn and I am always confronted with an error.
I have the latest version of sklearn downloaded here: https://github.com/scikit-learn/scikit-learn
I am running windows
python: 2.7.5 (32 bit)
scipy: .12
numpy: 1.7.0
When i started
from sklearn.linear_model import LinearRegression model = LinearRegression()
I get
--------------------------------------------------------------------------- ImportError Traceback (most recent call last) <ipython-input-7-9f5ae92552bb> in <module>() ----> 1 from sklearn.linear_model import LinearRegression 2 model = LinearRegression() C:\WinPython-32bit-2.7.5.1\python-2.7.5\lib\site-packages\sklearn\linear_model\__init__.py in <module>() 10
And based on this: https://github.com/scikit-learn/scikit-learn/issues/1202
Could this be a blas error? But this is in scipy, and I had problems with this before, but I just updated scipy, and everything should be fine.
Please, help! thanks in advance
source share