ubuntu下Armadillo的安装

Armadillo官网有安装过程http://arma.sourceforge.net/download.html

Armadillo安装前需要先安装依赖库: OpenBLAS and LAPACK

执行命令:

sudo apt-get install libopenblas-dev
sudo apt-get install liblapack-dev
sudo apt-get install libarpack2-dev
sudo apt-get install libsuperlu-dev

下载Armadillo包,链接:https://sourceforge.net/projects/arma/files/armadillo-9.600.6.tar.xz/download

在Armadillo的安装目录打开终端执行:

cmake .
make

超级用户执行sudo make install

非超级用户执行make install DESTDIR=my_usr_dir,my_usr_dir这个目录是用来存储C++的头文件与源文件的。

到此,安装完成。

 

你可能感兴趣的:(ROS学习,ROS)