How to Install and Uninstall python-enum34.noarch Package on CentOS 7 / RHEL 7

Last updated: April 29,2024

1. Install "python-enum34.noarch" package

In this section, we are going to explain the necessary steps to install python-enum34.noarch on CentOS 7 / RHEL 7

$ sudo yum makecache $ sudo yum install python-enum34.noarch

2. Uninstall "python-enum34.noarch" package

This guide let you learn how to uninstall python-enum34.noarch on CentOS 7 / RHEL 7:

$ sudo yum remove python-enum34.noarch $ sudo yum autoremove

3. Information about the python-enum34.noarch package on CentOS 7 / RHEL 7

Installed Packages
Name : python-enum34
Arch : noarch
Version : 1.0.4
Release : 1.el7
Size : 322 k
Repo : installed
From repo : base
Summary : Backport of Python 3.4 Enum
URL : https://pypi.python.org/pypi/enum34
License : BSD
Description : Python 3.4 introduced official support for enumerations. This is
: a backport of that feature to Python 3.3, 3.2, 3.1, 2.7, 2.5, 2.5,
: and 2.4.
:
: An enumeration is a set of symbolic names (members) bound to
: unique, constant values. Within an enumeration, the members can be
: compared by identity, and the enumeration itself can be iterated
: over.
:
: This module defines two enumeration classes that can be used to
: define unique sets of names and values: Enum and IntEnum. It also
: defines one decorator, unique, that ensures only unique member
: names are present in an enumeration.