What is the easiest way to install BLAS and LAPACK for scipy?

前端 未结 10 525
孤城傲影
孤城傲影 2020-12-04 14:12

I would like to run a programme that someone else has prepared and it includes scipy. I have tried to install scipy with

pip install scipy

10条回答
  •  失恋的感觉
    2020-12-04 15:08

    The SciPy installation page already recommends several ways of installing python with SciPy already included, such as WinPython.

    Another way is to use wheels (a built-package format):

    pip install SomePackage-1.0-py2.py3-none-any.whl
    

    The wheel packages you can find on: http://www.lfd.uci.edu/~gohlke/pythonlibs/

    For SciPy you need:

    • the NumPy wheel packages
    • and the SciPy wheel packages

提交回复
热议问题