How to Install and Uninstall python-enum34.noarch Package on Amazon Linux 2

Last updated: November 13,2024

1. Install "python-enum34.noarch" package

Learn how to install python-enum34.noarch on Amazon Linux 2

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

2. Uninstall "python-enum34.noarch" package

Please follow the steps below to uninstall python-enum34.noarch on Amazon Linux 2:

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

3. Information about the python-enum34.noarch package on Amazon Linux 2

Loaded plugins: ovl, priorities
Available Packages
Name : python-enum34
Arch : noarch
Version : 1.0.4
Release : 1.amzn2
Size : 52 k
Repo : amzn2-core/2/x86_64
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.