1

While trying to install scipy on windows using the following command in the Command Prompt:

pip install scipy

I get the following error:

raise NotFoundError<'no lapack/blas resources found'>

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

After searching the web I've noticed it's a common problem and tried all suggested solutions with no success. One of the solutions I've tried is installing MinGW for windows...

This is becoming very frustrating... any ideas?

Rob
  • 133
  • 3
  • 10

1 Answers1

1

According to the scipy installation guide, you should not use pip for installation on Windows. Rather stick to a binary package provided here:

http://www.lfd.uci.edu/~gohlke/pythonlibs/

(link provided as suggested here: https://scipy.org/install.html)

Andreas
  • 307
  • 3
  • 14