How To Install elpa-jedi-core on Debian 11
Introduction
In this tutorial we learn how to install elpa-jedi-core
on Debian 11.
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 Debian 11. 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 first since aptitude is usually not installed by default on Debian. 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 Debian 11
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 Debian 11, 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 Debian 11 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:
- 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 Debian 11 using different package management tools: apt
, apt-get
and aptitude
.