How To Install python-myghtyutils on Debian 9

In this tutorial we learn how to install python-myghtyutils on Debian 9. python-myghtyutils is Set of utility classes used by Myghty templating

Introduction

In this tutorial we learn how to install python-myghtyutils on Debian 9.

What is python-myghtyutils

python-myghtyutils is:

Utility classes used by Myghty templating: container - the Containment system providing back-end neutral key/value storage, with support for in-memory, DBM files, flat files, and memcached. buffer - some functions for augmenting file objects . util - various utility functions and objects. synchronizer - provides many reader/single writer synchronization using either thread mutexes or lockfiles. session - provides a Session interface built upon the Container, similar interface to mod_python session. Currently needs a mod_python-like request object, this should be changed to something more generic.

There are three methods to install python-myghtyutils 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-myghtyutils 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-myghtyutils using apt-get by running the following command:

sudo apt-get -y install python-myghtyutils

Install python-myghtyutils Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python-myghtyutils

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

sudo aptitude -y install python-myghtyutils

How To Uninstall python-myghtyutils on Debian 9

To uninstall only the python-myghtyutils package we can use the following command:

sudo apt-get remove python-myghtyutils

Uninstall python-myghtyutils And Its Dependencies

To uninstall python-myghtyutils and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove python-myghtyutils

Remove python-myghtyutils Configurations and Data

To remove python-myghtyutils configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge python-myghtyutils

Remove python-myghtyutils configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge python-myghtyutils

Dependencies

python-myghtyutils have the following dependencies:

References

Summary

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