How To Install r-cran-rtdists on Kali Linux
Introduction
In this tutorial we learn how to install r-cran-rtdists on Kali Linux.
What is r-cran-rtdists
r-cran-rtdists is:
Provides response time distributions (density/PDF, distribution function/CDF, quantile function, and random generation): (a) Ratcliff diffusion model (Ratcliff & McKoon, 2008, doi:10.1162/neco.2008.12-06-420) based on C code by Andreas and Jochen Voss and (b) linear ballistic accumulator (LBA; Brown & Heathcote, 2008, doi:10.1016/j.cogpsych.2007.12.002) with different distributions underlying the drift rate.
There are three methods to install r-cran-rtdists 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-rtdists Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install r-cran-rtdists using apt-get by running the following command:
sudo apt-get -y install r-cran-rtdistsInstall r-cran-rtdists Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install r-cran-rtdists using apt by running the following command:
sudo apt -y install r-cran-rtdistsInstall r-cran-rtdists 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 updateAfter updating apt database, We can install r-cran-rtdists using aptitude by running the following command:
sudo aptitude -y install r-cran-rtdistsHow To Uninstall r-cran-rtdists on Kali Linux
To uninstall only the r-cran-rtdists package we can use the following command:
sudo apt-get remove r-cran-rtdistsUninstall r-cran-rtdists And Its Dependencies
To uninstall r-cran-rtdists and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove r-cran-rtdistsRemove r-cran-rtdists Configurations and Data
To remove r-cran-rtdists configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge r-cran-rtdistsRemove r-cran-rtdists configuration, data, and all of its dependencies
We can use the following command to remove r-cran-rtdists configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge r-cran-rtdistsDependencies
r-cran-rtdists have the following dependencies:
References
Summary
In this tutorial we learn how to install r-cran-rtdists package on Kali Linux using different package management tools: apt, apt-get and aptitude.