How To Install python3-harmony on Debian 10
Introduction
In this tutorial we learn how to install python3-harmony
on Debian 10.
What is python3-harmony
python3-harmony is:
A program and library for performing various actions with the Discord messaging service. Currently, it supports:
- Creating an account
- Verifying the email address
- Viewing the account tag
- Change the username, email address, password, and avatar
- Change safety and privacy settings
- List servers you??re in and members in those servers
- Transfer and delete servers you own
- Accept server invites
- Delete your account
This program does not support messaging with Discord, please use Pidgin with the purple-discord plugin for that.
https://en.wikipedia.org/wiki/Discord_(software)
There are three methods to install python3-harmony
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 python3-harmony Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install python3-harmony
using apt-get
by running the following command:
sudo apt-get -y install python3-harmony
Install python3-harmony Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install python3-harmony
using apt
by running the following command:
sudo apt -y install python3-harmony
Install python3-harmony 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 python3-harmony
using aptitude
by running the following command:
sudo aptitude -y install python3-harmony
How To Uninstall python3-harmony on Debian 10
To uninstall only the python3-harmony
package we can use the following command:
sudo apt-get remove python3-harmony
Uninstall python3-harmony And Its Dependencies
To uninstall python3-harmony
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove python3-harmony
Remove python3-harmony Configurations and Data
To remove python3-harmony
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge python3-harmony
Remove python3-harmony configuration, data, and all of its dependencies
We can use the following command to remove python3-harmony
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python3-harmony
Dependencies
python3-harmony have the following dependencies:
References
Summary
In this tutorial we learn how to install python3-harmony
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.