How To Install python-wader on Debian 9
Introduction
In this tutorial we learn how to install python-wader on Debian 9.
What is python-wader
python-wader is:
A Python module providing access to various utilities required by the wader-core daemon, such as:
- AES encryption
- AT error handling
- SMS/MMS abstraction
- robust USSD stack
- network provider database
- 3G profile abstraction
- system service interface to GConf and D-Bus
- ModemManager constants
This package can also be used to implement an application requiring access to the above listed 3G telephony stack features.
There are three methods to install python-wader on Debian 9. 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-wader 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-wader using apt-get by running the following command:
sudo apt-get -y install python-wader
Install python-wader Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install python-wader using apt by running the following command:
sudo apt -y install python-wader
Install python-wader 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-wader using aptitude by running the following command:
sudo aptitude -y install python-wader
How To Uninstall python-wader on Debian 9
To uninstall only the python-wader package we can use the following command:
sudo apt-get remove python-wader
Uninstall python-wader And Its Dependencies
To uninstall python-wader and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove python-wader
Remove python-wader Configurations and Data
To remove python-wader configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge python-wader
Remove python-wader configuration, data, and all of its dependencies
We can use the following command to remove python-wader configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python-wader
Dependencies
python-wader have the following dependencies:
References
Summary
In this tutorial we learn how to install python-wader package on Debian 9 using different package management tools: apt, apt-get and aptitude.