cloudybunny
cloudybunny

Reputation: 129

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.

Upvotes: 8

Views: 20728

Answers (1)

Ed Smith
Ed Smith

Reputation: 13206

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

Upvotes: 3

Related Questions