How To Install elpa-elisp-slime-nav on Kali Linux

In this tutorial we learn how to install elpa-elisp-slime-nav on Kali Linux. elpa-elisp-slime-nav is Emacs extension that provide Emacs Lisp code navigation

Introduction

In this tutorial we learn how to install elpa-elisp-slime-nav on Kali Linux.

What is elpa-elisp-slime-nav

elpa-elisp-slime-nav is:

elpa-elisp-slime-nav is an extension, that provides equivalents off ‘find-tag’ and ‘pop-tag’ functions for Emacs Lisp code, allowing one to navigate to definition/declaration of function, variable or macro.

There are three methods to install elpa-elisp-slime-nav 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-elisp-slime-nav 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-elisp-slime-nav using apt-get by running the following command:

sudo apt-get -y install elpa-elisp-slime-nav

Install elpa-elisp-slime-nav Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install elpa-elisp-slime-nav using apt by running the following command:

sudo apt -y install elpa-elisp-slime-nav

Install elpa-elisp-slime-nav 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-elisp-slime-nav using aptitude by running the following command:

sudo aptitude -y install elpa-elisp-slime-nav

How To Uninstall elpa-elisp-slime-nav on Kali Linux

To uninstall only the elpa-elisp-slime-nav package we can use the following command:

sudo apt-get remove elpa-elisp-slime-nav

Uninstall elpa-elisp-slime-nav And Its Dependencies

To uninstall elpa-elisp-slime-nav and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove elpa-elisp-slime-nav

Remove elpa-elisp-slime-nav Configurations and Data

To remove elpa-elisp-slime-nav configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge elpa-elisp-slime-nav

Remove elpa-elisp-slime-nav configuration, data, and all of its dependencies

We can use the following command to remove elpa-elisp-slime-nav configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge elpa-elisp-slime-nav

Dependencies

elpa-elisp-slime-nav have the following dependencies:

References

Summary

In this tutorial we learn how to install elpa-elisp-slime-nav package on Kali Linux using different package management tools: apt, apt-get and aptitude.