Ben Chuanlong Du's Blog

It is never too late to learn.

No BLAS or LAPACK Found When Installing Scipy

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

To build Scipy from sources, BLAS & LAPACK libraries need to be installed. See site.cfg.example in the Scipy source directory and

sudo apt-get install gfortran libopenblas-dev liblapack-dev

The dependency requires scipy 1.6.1 which does not have a pre-built wheel, thus a wheel will be built when installing scipy 1.6.1 which requires BLAS and LAPACK libraries to be installed.

Comments