How To Install elpa-org-present on Debian 12

Learn how to install elpa-org-present on Debian 12 with this tutorial. elpa-org-present is minimalist presentation tool for Emacs org-mode

Introduction

In this tutorial we learn how to install elpa-org-present on Debian 12.

What is elpa-org-present

elpa-org-present is:

This is meant to be an extremely minimalist presentation tool for Emacs org-mode. Simply layout your presentation with each slide under a top-level header, start the minor mode with ‘org-present’, and page through each slide with left/right keys.

There are three methods to install elpa-org-present on Debian 12. 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-org-present 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-org-present using apt-get by running the following command:

sudo apt-get -y install elpa-org-present

Install elpa-org-present Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install elpa-org-present

Install elpa-org-present 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-org-present using aptitude by running the following command:

sudo aptitude -y install elpa-org-present

How To Uninstall elpa-org-present on Debian 12

To uninstall only the elpa-org-present package we can use the following command:

sudo apt-get remove elpa-org-present

Uninstall elpa-org-present And Its Dependencies

To uninstall elpa-org-present and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove elpa-org-present

Remove elpa-org-present Configurations and Data

To remove elpa-org-present configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge elpa-org-present

Remove elpa-org-present configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge elpa-org-present

Dependencies

elpa-org-present have the following dependencies:

References

Summary

In this tutorial we learn how to install elpa-org-present package on Debian 12 using different package management tools: apt, apt-get and aptitude.