How To Install r-cran-gridgraphics on Kali Linux
Introduction
In this tutorial we learn how to install r-cran-gridgraphics
on Kali Linux.
What is r-cran-gridgraphics
r-cran-gridgraphics is:
Functions to convert a page of plots drawn with the ‘graphics’ package into identical output drawn with the ‘grid’ package. The result looks like the original ‘graphics’-based plot, but consists of ‘grid’ grobs and viewports that can then be manipulated with ‘grid’ functions (e.g., edit grobs and revisit viewports).
There are three methods to install r-cran-gridgraphics
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-gridgraphics 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-gridgraphics
using apt-get
by running the following command:
sudo apt-get -y install r-cran-gridgraphics
Install r-cran-gridgraphics Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install r-cran-gridgraphics
using apt
by running the following command:
sudo apt -y install r-cran-gridgraphics
Install r-cran-gridgraphics 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-gridgraphics
using aptitude
by running the following command:
sudo aptitude -y install r-cran-gridgraphics
How To Uninstall r-cran-gridgraphics on Kali Linux
To uninstall only the r-cran-gridgraphics
package we can use the following command:
sudo apt-get remove r-cran-gridgraphics
Uninstall r-cran-gridgraphics And Its Dependencies
To uninstall r-cran-gridgraphics
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove r-cran-gridgraphics
Remove r-cran-gridgraphics Configurations and Data
To remove r-cran-gridgraphics
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge r-cran-gridgraphics
Remove r-cran-gridgraphics configuration, data, and all of its dependencies
We can use the following command to remove r-cran-gridgraphics
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge r-cran-gridgraphics
Dependencies
r-cran-gridgraphics have the following dependencies:
References
Summary
In this tutorial we learn how to install r-cran-gridgraphics
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.