How To Install gitsome on Kali Linux
Introduction
In this tutorial we learn how to install gitsome on Kali Linux.
What is gitsome
gitsome is:
gitsome provides direct integration with GitHub and GitHub Enterprise in a terminal. It includes not only GitHub integrated commands that work with all shells but also provides following functions.
- Git and GitHub Autocompleter With Interactive Help
- Fish-Style Auto-Suggestions
- General Autocompleter
- Python REPL
- Command History
- Customizable Highlighting
There are three methods to install gitsome 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 gitsome Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install gitsome using apt-get by running the following command:
sudo apt-get -y install gitsomeInstall gitsome Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install gitsome using apt by running the following command:
sudo apt -y install gitsomeInstall gitsome 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 gitsome using aptitude by running the following command:
sudo aptitude -y install gitsomeHow To Uninstall gitsome on Kali Linux
To uninstall only the gitsome package we can use the following command:
sudo apt-get remove gitsomeUninstall gitsome And Its Dependencies
To uninstall gitsome and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove gitsomeRemove gitsome Configurations and Data
To remove gitsome configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge gitsomeRemove gitsome configuration, data, and all of its dependencies
We can use the following command to remove gitsome configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gitsomeDependencies
gitsome have the following dependencies:
- python3-click
- python3-colorama
- python3-docopt
- python3-feedparser
- python3-numpydoc
- python3-ply
- python3-prompt-toolkit
- python3-pygments
- python3-requests
- python3-sigmavirus24-urltemplate
- python3-tz
- python3
References
Summary
In this tutorial we learn how to install gitsome package on Kali Linux using different package management tools: apt, apt-get and aptitude.