How To Install r-cran-modeest on Ubuntu 22.04
Introduction
In this tutorial we learn how to install r-cran-modeest on Ubuntu 22.04.
What is r-cran-modeest
r-cran-modeest is:
Provides estimators of the mode of univariate data or univariate distributions.
There are three methods to install r-cran-modeest on Ubuntu 22.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-modeest 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-modeest using apt-get by running the following command:
sudo apt-get -y install r-cran-modeest
Install r-cran-modeest Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install r-cran-modeest using apt by running the following command:
sudo apt -y install r-cran-modeest
Install r-cran-modeest 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-modeest using aptitude by running the following command:
sudo aptitude -y install r-cran-modeest
How To Uninstall r-cran-modeest on Ubuntu 22.04
To uninstall only the r-cran-modeest package we can use the following command:
sudo apt-get remove r-cran-modeest
Uninstall r-cran-modeest And Its Dependencies
To uninstall r-cran-modeest and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:
sudo apt-get -y autoremove r-cran-modeest
Remove r-cran-modeest Configurations and Data
To remove r-cran-modeest configuration and data from Ubuntu 22.04 we can use the following command:
sudo apt-get -y purge r-cran-modeest
Remove r-cran-modeest configuration, data, and all of its dependencies
We can use the following command to remove r-cran-modeest configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge r-cran-modeest
References
Summary
In this tutorial we learn how to install r-cran-modeest package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.