How To Install python-meliae on CentOS 7

In this tutorial we learn how to install python-meliae on CentOS 7. python-meliae is Python memory usage statistics

Introduction

In this tutorial we learn how to install python-meliae on CentOS 7.

What is python-meliae

“meliae” provides a way to dump python memory usage information to a JSON disk format, which can then be parsed into useful things like graph representations. The name is simply a fun word (means Ash-wood Nymph).

We can use yum or dnf to install python-meliae on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install python-meliae.

Install python-meliae on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install python-meliae

Install python-meliae on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install python-meliae using dnf by running the following command:

sudo dnf -y install python-meliae

How To Uninstall python-meliae on CentOS 7

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

sudo dnf remove python-meliae

References

Summary

In this tutorial we learn how to install python-meliae on CentOS 7 using yum and dnf.