I want to install the newest version of numpy
(a numerical library for Python), and the version (v1.6.1) is not yet in the Ubuntu Oneiric repositories. When I went ahead to manually install it, I read in the INSTALL file that numpy
needs to be built with the same compiler that built LAPACK
(a fortran lib used by numpy
). Unfortunately, I don't know which compiler that is. I didn't install LAPACK
myself - apt-get
did, back when I installed an older numpy
(v1.5.1) using apt
. If I had to guess, I'd say gfortran
, but I'd rather not mess this up.
How do I figure out which compiler built my current installation of LAPACK
? Is there any easy way - perhaps running some fortran code that uses it and examining the output?
Thanks!