How To Install elpa-jedi on Kali Linux
Introduction
In this tutorial we learn how to install elpa-jedi on Kali Linux.
What is elpa-jedi
elpa-jedi is:
The package provides a Python auto-completion package for Emacs. It aims at helping your Python coding in a non-destructive way. It also helps you to find information about Python objects, such as docstring, function arguments and code location.
This package contains jedi.el, which relies on auto-complete.el.
There are three methods to install elpa-jedi 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 elpa-jedi Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install elpa-jedi using apt-get by running the following command:
sudo apt-get -y install elpa-jediInstall elpa-jedi Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install elpa-jedi using apt by running the following command:
sudo apt -y install elpa-jediInstall elpa-jedi 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 elpa-jedi using aptitude by running the following command:
sudo aptitude -y install elpa-jediHow To Uninstall elpa-jedi on Kali Linux
To uninstall only the elpa-jedi package we can use the following command:
sudo apt-get remove elpa-jediUninstall elpa-jedi And Its Dependencies
To uninstall elpa-jedi and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove elpa-jediRemove elpa-jedi Configurations and Data
To remove elpa-jedi configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge elpa-jediRemove elpa-jedi configuration, data, and all of its dependencies
We can use the following command to remove elpa-jedi configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge elpa-jediDependencies
elpa-jedi have the following dependencies:
References
Summary
In this tutorial we learn how to install elpa-jedi package on Kali Linux using different package management tools: apt, apt-get and aptitude.