I need to install the lapack library in an ubuntu computer for linking to a code I am developing.
I have been told to apt-get install liblapack3
, but the only one I found is liblapack3gf
. My list of apt says liblapack3gf - library of linear algebra routines 3 - shared version
, but the person who told me to install it has liblapack3 - Library of linear algebra routines 3 - shared version
and liblapack3gf - Transitional package for liblapack3
.
What is a transitional package? Should I install lapack3gf
or download directly from lapack page? should I also install liblapack-dev
?
liblapack-dev
in order to link your compiled object files together with the-llapack
switch. – Wauzl Apr 28 '15 at 10:24