Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

numpy.distutils.system_info.NotFoundError: no lapack/blas resources found

While installing SciPy on PyCharm IDE, I got stuck with the error saying

numpy.distutils.system_info.NotFoundError: no lapack/blas resources found

I have installed correct version of pip. I don't know where went wrong.

like image 906
cloudybunny Avatar asked Jun 10 '15 10:06

cloudybunny


1 Answers

Blas and lapack are linear algebra packages which will need to be installed before scipy will work (check the dependencies). For windows 8.1 you may find help on http://icl.cs.utk.edu/lapack-for-windows/lapack/.

Also check out this answer which may help Windows Scipy Install: No Lapack/Blas Resources Found

like image 123
Ed Smith Avatar answered Oct 01 '22 19:10

Ed Smith