How To Install r-bioc-experimenthub on Kali Linux
Introduction
In this tutorial we learn how to install r-bioc-experimenthub on Kali Linux.
What is r-bioc-experimenthub
r-bioc-experimenthub is:
This package provides a client for the Bioconductor ExperimentHub web resource. ExperimentHub provides a central location where curated data from experiments, publications or training courses can be accessed. Each resource has associated metadata, tags and date of modification. The client creates and manages a local cache of files retrieved enabling quick and reproducible access.
There are three methods to install r-bioc-experimenthub 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-bioc-experimenthub Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install r-bioc-experimenthub using apt-get by running the following command:
sudo apt-get -y install r-bioc-experimenthubInstall r-bioc-experimenthub Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install r-bioc-experimenthub using apt by running the following command:
sudo apt -y install r-bioc-experimenthubInstall r-bioc-experimenthub 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-bioc-experimenthub using aptitude by running the following command:
sudo aptitude -y install r-bioc-experimenthubHow To Uninstall r-bioc-experimenthub on Kali Linux
To uninstall only the r-bioc-experimenthub package we can use the following command:
sudo apt-get remove r-bioc-experimenthubUninstall r-bioc-experimenthub And Its Dependencies
To uninstall r-bioc-experimenthub and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove r-bioc-experimenthubRemove r-bioc-experimenthub Configurations and Data
To remove r-bioc-experimenthub configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge r-bioc-experimenthubRemove r-bioc-experimenthub configuration, data, and all of its dependencies
We can use the following command to remove r-bioc-experimenthub configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge r-bioc-experimenthubDependencies
r-bioc-experimenthub have the following dependencies:
- r-base-core
- r-api-4.0
- r-api-bioc-3.12
- r-bioc-biocgenerics
- r-bioc-annotationhub
- r-bioc-biocfilecache
- r-bioc-s4vectors
- r-cran-biocmanager
- r-cran-curl
- r-cran-rappdirs
References
Summary
In this tutorial we learn how to install r-bioc-experimenthub package on Kali Linux using different package management tools: apt, apt-get and aptitude.