How To Install ruby-grape-path-helpers on Kali Linux
Introduction
In this tutorial we learn how to install ruby-grape-path-helpers on Kali Linux.
What is ruby-grape-path-helpers
ruby-grape-path-helpers is:
Provides named route helpers for Grape APIs, similar to Rails’ route helpers.
This is a fork and rename of grape-route-helpers. It includes some fixes needed for GitLab.
There are three methods to install ruby-grape-path-helpers 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 ruby-grape-path-helpers Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install ruby-grape-path-helpers using apt-get by running the following command:
sudo apt-get -y install ruby-grape-path-helpersInstall ruby-grape-path-helpers Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install ruby-grape-path-helpers using apt by running the following command:
sudo apt -y install ruby-grape-path-helpersInstall ruby-grape-path-helpers 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 ruby-grape-path-helpers using aptitude by running the following command:
sudo aptitude -y install ruby-grape-path-helpersHow To Uninstall ruby-grape-path-helpers on Kali Linux
To uninstall only the ruby-grape-path-helpers package we can use the following command:
sudo apt-get remove ruby-grape-path-helpersUninstall ruby-grape-path-helpers And Its Dependencies
To uninstall ruby-grape-path-helpers and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove ruby-grape-path-helpersRemove ruby-grape-path-helpers Configurations and Data
To remove ruby-grape-path-helpers configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge ruby-grape-path-helpersRemove ruby-grape-path-helpers configuration, data, and all of its dependencies
We can use the following command to remove ruby-grape-path-helpers configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ruby-grape-path-helpersDependencies
ruby-grape-path-helpers have the following dependencies:
References
Summary
In this tutorial we learn how to install ruby-grape-path-helpers package on Kali Linux using different package management tools: apt, apt-get and aptitude.