1
votes

Scipy is installed with Anaconda, but won't work since no lapack and blas resources can be found. I've put the precompiled lapack/blas stuff from this link:

http://www.fi.muni.cz/~xsvobod2/misc/lapack/

into my Anaconda folder (user/anaconda) and also into my standard python istallation (c://python27). It still won't work.

I've checked out other questions on this forum on how to install. I've followed the instructions given here:

http://www.scipy.org/scipylib/building/windows.html

but Cmake always sais that the compiler can't compile a simple test program.

2
Never had this kind of issue, neither with windows nor with Linux. Anaconda usually contains the necessary libraries.Moritz
can you specify won't work?cel
Won't work means that when I import Scipy it gives me: ImportError: No module named scipygefdel
I figure this is since there is no lapack/blas because when I pip install scipy it tells me that there are no blas/lapack resources. However when I conda install scipy, the feedback prompt sais that the package is already installed.gefdel

2 Answers

1
votes

Problem solved! I uninstalled Python 2.7 and Anaconda, and now for some reason it works. Thanks to you guys who answered this post :)

1
votes

Did you try this code?

-conda install -c pymc pymc

It includes installing Scipy. "Lapack/blas resources not found" error disappeared when I tried this.