Where's ATLAS installed on Ubuntu 18.04 Mate on ARM CPU?
Mia Lopez
I installed Atlas on Ubuntu 18.04 Mate using the command
sudo apt-get install libatlas-base-devI'm running this on an Odroid N2 (), so it's an ARM system.
While the command to install it works, I can't find where it gets installed. I am trying to run GAMESS () and part of the configuration asks where I have installed ATLAS. In Ubuntu 16.04 Mate on an Odroid XU4, it was installed to /usr/lib/atlas-base, but I can't find it there. Thanks in advance for any help.
11 Answer
You should consult with output of APT on the local system
dpkg -L libatlas-base-devor use search on packages.ubuntu.com.
But better way is to use pkg-config as libatlas-base-dev have two related files:
/usr/lib/x86_64-linux-gnu/pkgconfig/blas-atlas.pc/usr/lib/x86_64-linux-gnu/pkgconfig/lapack-atlas.pc
So you can use pkg-config --libs --cflags lapack-atlas blas-atlas to get libraries names and include-paths.