How To Install python2-plaster on Rocky Linux 8

In this tutorial we learn how to install python2-plaster on Rocky Linux 8. python2-plaster is Application configuration settings abstraction layer

Introduction

In this tutorial we learn how to install python2-plaster on Rocky Linux 8.

What is python2-plaster

plaster is a loader interface around multiple configuration file formats. It exists to define a common API for applications to use when they wish to load configuration. The library itself does not aim to handle anything except a basic API that applications may use to find and load configuration settings. Any specific constraints should be implemented in a loader which can be registered via an entry point.

We can use yum or dnf to install python2-plaster on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install python2-plaster.

Install python2-plaster on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install python2-plaster

Install python2-plaster on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install python2-plaster

How To Uninstall python2-plaster on Rocky Linux 8

To uninstall only the python2-plaster package we can use the following command:

sudo dnf remove python2-plaster

python2-plaster Package Contents on Rocky Linux 8

/usr/lib/python2.7/site-packages/plaster
/usr/lib/python2.7/site-packages/plaster-0.5-py2.7.egg-info
/usr/lib/python2.7/site-packages/plaster-0.5-py2.7.egg-info/PKG-INFO
/usr/lib/python2.7/site-packages/plaster-0.5-py2.7.egg-info/SOURCES.txt
/usr/lib/python2.7/site-packages/plaster-0.5-py2.7.egg-info/dependency_links.txt
/usr/lib/python2.7/site-packages/plaster-0.5-py2.7.egg-info/not-zip-safe
/usr/lib/python2.7/site-packages/plaster-0.5-py2.7.egg-info/requires.txt
/usr/lib/python2.7/site-packages/plaster-0.5-py2.7.egg-info/top_level.txt
/usr/lib/python2.7/site-packages/plaster/__init__.py
/usr/lib/python2.7/site-packages/plaster/__init__.pyc
/usr/lib/python2.7/site-packages/plaster/__init__.pyo
/usr/lib/python2.7/site-packages/plaster/compat.py
/usr/lib/python2.7/site-packages/plaster/compat.pyc
/usr/lib/python2.7/site-packages/plaster/compat.pyo
/usr/lib/python2.7/site-packages/plaster/exceptions.py
/usr/lib/python2.7/site-packages/plaster/exceptions.pyc
/usr/lib/python2.7/site-packages/plaster/exceptions.pyo
/usr/lib/python2.7/site-packages/plaster/interfaces.py
/usr/lib/python2.7/site-packages/plaster/interfaces.pyc
/usr/lib/python2.7/site-packages/plaster/interfaces.pyo
/usr/lib/python2.7/site-packages/plaster/loaders.py
/usr/lib/python2.7/site-packages/plaster/loaders.pyc
/usr/lib/python2.7/site-packages/plaster/loaders.pyo
/usr/lib/python2.7/site-packages/plaster/protocols.py
/usr/lib/python2.7/site-packages/plaster/protocols.pyc
/usr/lib/python2.7/site-packages/plaster/protocols.pyo
/usr/lib/python2.7/site-packages/plaster/uri.py
/usr/lib/python2.7/site-packages/plaster/uri.pyc
/usr/lib/python2.7/site-packages/plaster/uri.pyo
/usr/share/doc/python2-plaster
/usr/share/doc/python2-plaster/README.rst
/usr/share/licenses/python2-plaster
/usr/share/licenses/python2-plaster/LICENSE.txt

References

Summary

In this tutorial we learn how to install python2-plaster on Rocky Linux 8 using yum and dnf.