How To Install elpa-jedi-core on Kali Linux

In this tutorial we learn how to install elpa-jedi-core on Kali Linux. elpa-jedi-core is common code of jedi.el and company-jedi.el

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 update

After updating apt database, We can install elpa-jedi-core using apt-get by running the following command:

sudo apt-get -y install elpa-jedi-core

Install elpa-jedi-core Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install elpa-jedi-core using apt by running the following command:

sudo apt -y install elpa-jedi-core

Install 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 update

After updating apt database, We can install elpa-jedi-core using aptitude by running the following command:

sudo aptitude -y install elpa-jedi-core

How 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-core

Uninstall 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-core

Remove 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-core

Remove 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-core

Dependencies

elpa-jedi-core have the following dependencies:

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.