How To Install r-cran-r.oo on Kali Linux
Introduction
In this tutorial we learn how to install r-cran-r.oo
on Kali Linux.
What is r-cran-r.oo
r-cran-r.oo is:
Methods and classes for object-oriented programming in R with or without references. Large effort has been made on making definition of methods as simple as possible with a minimum of maintenance for package developers. The package has been developed since 2001 and is now considered very stable. This is a cross-platform package implemented in pure R that defines standard S3 classes without any tricks.
There are three methods to install r-cran-r.oo
on Kali Linux. 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-r.oo 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-r.oo
using apt-get
by running the following command:
sudo apt-get -y install r-cran-r.oo
Install r-cran-r.oo Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install r-cran-r.oo
using apt
by running the following command:
sudo apt -y install r-cran-r.oo
Install r-cran-r.oo Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install r-cran-r.oo
using aptitude
by running the following command:
sudo aptitude -y install r-cran-r.oo
How To Uninstall r-cran-r.oo on Kali Linux
To uninstall only the r-cran-r.oo
package we can use the following command:
sudo apt-get remove r-cran-r.oo
Uninstall r-cran-r.oo And Its Dependencies
To uninstall r-cran-r.oo
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove r-cran-r.oo
Remove r-cran-r.oo Configurations and Data
To remove r-cran-r.oo
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge r-cran-r.oo
Remove r-cran-r.oo configuration, data, and all of its dependencies
We can use the following command to remove r-cran-r.oo
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge r-cran-r.oo
Dependencies
r-cran-r.oo have the following dependencies:
References
Summary
In this tutorial we learn how to install r-cran-r.oo
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.