Installing BLAS and LAPACK packages
Solution 1:
There's a typo in @Maythux's answer: there should be no e
in liblapacke
.
A more minimalist set of packages can be installed with:
sudo apt-get install libblas-dev liblapack-dev
Also, if you're installing these to get scipy
to install with pip
, it may not be the complete solution (I failed to use pip install scipy
in an ARM architecture Ubuntu 14.04 system). I found success with apt-get install python-scipy
, but it was an older version (0.13.3). If you need a newer version via pip
, you may also need:
sudo apt-get install gfortran
I found this info on StackOverflow here
Solution 2:
In my case, the solution is
sudo apt-get install libatlas-base-dev