How To Install r-cran-tinytest on Kali Linux
Introduction
In this tutorial we learn how to install r-cran-tinytest on Kali Linux.
What is r-cran-tinytest
r-cran-tinytest is:
Provides a lightweight (zero-dependency) and easy to use unit testing framework. Main features: install tests with the package. Test results are treated as data that can be stored and manipulated. Test files are R scripts interspersed with test commands, that can be programmed over. Fully automated build-install-test sequence for packages. Skip tests when not run locally (e.g. on CRAN). Flexible and configurable output printing. Compare computed output with output stored with the package. Run tests in parallel. Extensible by other packages. Report side effects.
There are three methods to install r-cran-tinytest 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-tinytest 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-tinytest using apt-get by running the following command:
sudo apt-get -y install r-cran-tinytestInstall r-cran-tinytest Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install r-cran-tinytest using apt by running the following command:
sudo apt -y install r-cran-tinytestInstall r-cran-tinytest 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-tinytest using aptitude by running the following command:
sudo aptitude -y install r-cran-tinytestHow To Uninstall r-cran-tinytest on Kali Linux
To uninstall only the r-cran-tinytest package we can use the following command:
sudo apt-get remove r-cran-tinytestUninstall r-cran-tinytest And Its Dependencies
To uninstall r-cran-tinytest and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove r-cran-tinytestRemove r-cran-tinytest Configurations and Data
To remove r-cran-tinytest configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge r-cran-tinytestRemove r-cran-tinytest configuration, data, and all of its dependencies
We can use the following command to remove r-cran-tinytest configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge r-cran-tinytestDependencies
r-cran-tinytest have the following dependencies:
References
Summary
In this tutorial we learn how to install r-cran-tinytest package on Kali Linux using different package management tools: apt, apt-get and aptitude.