How To Install r-cran-rcpparmadillo on Ubuntu 20.04

In this tutorial we learn how to install r-cran-rcpparmadillo on Ubuntu 20.04. r-cran-rcpparmadillo is GNU R package for Armadillo C++ linear algebra library

Introduction

In this tutorial we learn how to install r-cran-rcpparmadillo on Ubuntu 20.04.

What is r-cran-rcpparmadillo

r-cran-rcpparmadillo is:

Armadillo is a templated C++ linear algebra library (by Conrad Sanderson) that aims towards a good balance between speed and ease of use. Integer, floating point and complex numbers are supported, as well as a subset of trigonometric and statistics functions. Various matrix decompositions are provided through optional integration with LAPACK and ATLAS libraries.

A delayed evaluation approach is employed (during compile time) to combine several operations into one, and to reduce (or eliminate) the need for temporaries. This is accomplished through recursive templates and template meta-programming.

This library is useful if C++ has been decided as the language of choice (due to speed and/or integration capabilities), rather than another language.

The RcppArmadillo package includes the header files from the templated Armadillo library. Thus users do not need to install Armadillo itself in order to use RcppArmadillo.

This Armadillo integration provides a nice illustration of the capabilities of the Rcpp package for seamless R and C++ integration.

Armadillo is licensed under the MPL 2.0, while RcppArmadillo (the Rcpp bindings/bridge to Armadillo) is licensed under the GNU GPL version 2 or later, as is the rest of Rcpp.

There are three methods to install r-cran-rcpparmadillo on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install r-cran-rcpparmadillo Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install r-cran-rcpparmadillo using apt-get by running the following command:

sudo apt-get -y install r-cran-rcpparmadillo

Install r-cran-rcpparmadillo Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install r-cran-rcpparmadillo using apt by running the following command:

sudo apt -y install r-cran-rcpparmadillo

Install r-cran-rcpparmadillo Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install r-cran-rcpparmadillo using aptitude by running the following command:

sudo aptitude -y install r-cran-rcpparmadillo

How To Uninstall r-cran-rcpparmadillo on Ubuntu 20.04

To uninstall only the r-cran-rcpparmadillo package we can use the following command:

sudo apt-get remove r-cran-rcpparmadillo

Uninstall r-cran-rcpparmadillo And Its Dependencies

To uninstall r-cran-rcpparmadillo and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove r-cran-rcpparmadillo

Remove r-cran-rcpparmadillo Configurations and Data

To remove r-cran-rcpparmadillo configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge r-cran-rcpparmadillo

Remove r-cran-rcpparmadillo configuration, data, and all of its dependencies

We can use the following command to remove r-cran-rcpparmadillo configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge r-cran-rcpparmadillo

References

Summary

In this tutorial we learn how to install r-cran-rcpparmadillo package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.