How to Install and Uninstall python3-aenum.noarch Package on CentOS 8 / RHEL 8

Last updated: May 04,2024

1. Install "python3-aenum.noarch" package

This is a short guide on how to install python3-aenum.noarch on CentOS 8 / RHEL 8

$ sudo dnf update $ sudo dnf install python3-aenum.noarch

2. Uninstall "python3-aenum.noarch" package

Please follow the steps below to uninstall python3-aenum.noarch on CentOS 8 / RHEL 8:

$ sudo dnf remove python3-aenum.noarch $ sudo dnf autoremove

3. Information about the python3-aenum.noarch package on CentOS 8 / RHEL 8

Last metadata expiration check: 1 day, 7:44:01 ago on Sun May 9 13:03:46 2021.
Available Packages
Name : python3-aenum
Version : 2.2.3
Release : 1.el8
Architecture : noarch
Size : 173 k
Source : python-aenum-2.2.3-1.el8.src.rpm
Repository : epel
Summary : Advanced Enumerations, NamedTuples and NamedConstants for Python
URL : https://bitbucket.org/stoneleaf/aenum
License : BSD
Description : aenum includes a Python stdlib Enum-compatible data type, as well as a
: metaclass-based NamedTuple implementation and a NamedConstant class.
:
: An Enum 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. Support exists for unique values,
: multiple values, auto-numbering, and suspension of aliasing, plus the ability
: to have values automatically bound to attributes.
:
: A NamedTuple is a class-based, fixed-length tuple with a name for each
: possible position accessible using attribute-access notation as well as
: the standard index notation.
:
: A NamedConstant is a class whose members cannot be rebound; it lacks all other
: Enum capabilities, however.