How To Install elpa-jedi-core on Kali Linux
Introduction
In this tutorial we learn how to install elpa-jedi-core on Kali Linux.
What is elpa-jedi-core
elpa-jedi-core 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 common code of jedi.el and company-jedi.el.
There are three methods to install elpa-jedi-core 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-core 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-core using apt-get by running the following command:
sudo apt-get -y install elpa-jedi-coreInstall elpa-jedi-core Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install elpa-jedi-core using apt by running the following command:
sudo apt -y install elpa-jedi-coreInstall elpa-jedi-core 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-core using aptitude by running the following command:
sudo aptitude -y install elpa-jedi-coreHow To Uninstall elpa-jedi-core on Kali Linux
To uninstall only the elpa-jedi-core package we can use the following command:
sudo apt-get remove elpa-jedi-coreUninstall elpa-jedi-core And Its Dependencies
To uninstall elpa-jedi-core and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove elpa-jedi-coreRemove elpa-jedi-core Configurations and Data
To remove elpa-jedi-core configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge elpa-jedi-coreRemove elpa-jedi-core configuration, data, and all of its dependencies
We can use the following command to remove elpa-jedi-core configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge elpa-jedi-coreDependencies
elpa-jedi-core have the following dependencies:
- elpa-epc
- elpa-python-environment
- dh-elpa-helper
- emacsen-common
- python3
- python3-epc
- python3-jedi
- python3-sexpdata
- virtualenv
References
Summary
In this tutorial we learn how to install elpa-jedi-core package on Kali Linux using different package management tools: apt, apt-get and aptitude.