Velvet Star Monitor

Standout celebrity highlights with iconic style.

updates

Where's ATLAS installed on Ubuntu 18.04 Mate on ARM CPU?

Writer Mia Lopez

I installed Atlas on Ubuntu 18.04 Mate using the command

sudo apt-get install libatlas-base-dev

I'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.

1

1 Answer

You should consult with output of APT on the local system

dpkg -L libatlas-base-dev

or use search on packages.ubuntu.com.

But better way is to use pkg-config as libatlas-base-dev have two related files:

  1. /usr/lib/x86_64-linux-gnu/pkgconfig/blas-atlas.pc
  2. /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.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy