How To Install apprise on Debian 12

Learn how to install apprise on Debian 12 with this tutorial. apprise is Push Notifications that work with just about every platform

Introduction

In this tutorial we learn how to install apprise on Debian 12.

What is apprise

apprise is:

Allows you to send notifications to more than 70 notification services. With emphasis on: Apprise API, AWS SES, Telegram, Discord, Slack, Amazon SNS, Gotify, Google Chat, Faast, IFTTT, Matrix, Microsoft Teams etc.

There is a small built-in Configuration Manager that can be optionally accessed through your web browser allowing, you to create and save as many configurations as you’d like. Each configuration is differentiated by a unique {KEY} that you decide on.

There are three methods to install apprise 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 apprise Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

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

sudo apt-get -y install apprise

Install apprise Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install apprise using apt by running the following command:

sudo apt -y install apprise

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

sudo aptitude -y install apprise

How To Uninstall apprise on Debian 12

To uninstall only the apprise package we can use the following command:

sudo apt-get remove apprise

Uninstall apprise And Its Dependencies

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

sudo apt-get -y autoremove apprise

Remove apprise Configurations and Data

To remove apprise configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge apprise

Remove apprise configuration, data, and all of its dependencies

We can use the following command to remove apprise configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge apprise

Dependencies

apprise have the following dependencies:

References

Summary

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