Skip to content

How to install Armadilo

K M Masum Habib edited this page Oct 6, 2016 · 1 revision

How to Install Armadilo


Download the latest version of Armadilosource code from here, and put it under /home/username/usr/src folder. Now you have to untar the archive.

#!bash
cd ~/usr/src 
tar -xvg armadillo-4.450.4.tar.gz

A new folder named armadillo-4.450.4 will be created. To configure Armadilo for your host/cluster, change directory to armadillo-4.450.4 and use ./cofigure command.

#!bash
cd  armadillo-4.450.4
./configure
cmake .
make
make install DESTDIR=~
mv ~/usr/local/lib64 ~/usr
mv ~/usr/local/include/armadillo-4.450.4 ~/usr/include
Clone this wiki locally