How To Install python-libravatar on Debian 10
Introduction
In this tutorial we learn how to install python-libravatar
on Debian 10.
What is python-libravatar
python-libravatar is:
Module to make use of the federated Libravatar.org avatar hosting service from within Python applications.
Libravatar is a free service for hosting profile images tied to an email address or an OpenID. Inspired by the elegant solution pioneered by Gravatar, Libravatar takes a federated approach to the problem and allows domain owners to specify the server that should host images for their organisation.
This package provides Python 2 module bindings only.
There are three methods to install python-libravatar
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install python-libravatar Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install python-libravatar
using apt-get
by running the following command:
sudo apt-get -y install python-libravatar
Install python-libravatar Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install python-libravatar
using apt
by running the following command:
sudo apt -y install python-libravatar
Install python-libravatar 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 python-libravatar
using aptitude
by running the following command:
sudo aptitude -y install python-libravatar
How To Uninstall python-libravatar on Debian 10
To uninstall only the python-libravatar
package we can use the following command:
sudo apt-get remove python-libravatar
Uninstall python-libravatar And Its Dependencies
To uninstall python-libravatar
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove python-libravatar
Remove python-libravatar Configurations and Data
To remove python-libravatar
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge python-libravatar
Remove python-libravatar configuration, data, and all of its dependencies
We can use the following command to remove python-libravatar
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python-libravatar
Dependencies
python-libravatar have the following dependencies:
References
Summary
In this tutorial we learn how to install python-libravatar
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.