8

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.

bad_coder
  • 11,289
  • 20
  • 44
  • 72
cloudybunny
  • 129
  • 1
  • 1
  • 7
  • Possible duplicate of [Windows Scipy Install: No Lapack/Blas Resources Found](http://stackoverflow.com/questions/28190534/windows-scipy-install-no-lapack-blas-resources-found) – n611x007 Dec 24 '15 at 15:40

1 Answers1

3

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

Community
  • 1
  • 1
Ed Smith
  • 12,716
  • 2
  • 43
  • 55