How To Install python-mmllib on Debian 10
Introduction
In this tutorial we learn how to install python-mmllib on Debian 10.
What is python-mmllib
python-mmllib is:
MMLlib is a pure Python implementation of functionality related to the Music Macro Language as implemented by Microsoft? GW-BASIC? and compatibles, which is its most common form, also implemented by the PC speaker driver in Linux and BSD, with a number of extensions and changes.
This package contains the Python 2 build.
There are three methods to install python-mmllib 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-mmllib 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-mmllib using apt-get by running the following command:
sudo apt-get -y install python-mmllib
Install python-mmllib Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install python-mmllib using apt by running the following command:
sudo apt -y install python-mmllib
Install python-mmllib 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-mmllib using aptitude by running the following command:
sudo aptitude -y install python-mmllib
How To Uninstall python-mmllib on Debian 10
To uninstall only the python-mmllib package we can use the following command:
sudo apt-get remove python-mmllib
Uninstall python-mmllib And Its Dependencies
To uninstall python-mmllib and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove python-mmllib
Remove python-mmllib Configurations and Data
To remove python-mmllib configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge python-mmllib
Remove python-mmllib configuration, data, and all of its dependencies
We can use the following command to remove python-mmllib configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python-mmllib
Dependencies
python-mmllib have the following dependencies:
References
Summary
In this tutorial we learn how to install python-mmllib package on Debian 10 using different package management tools: apt, apt-get and aptitude.