How to Install and Uninstall python2-enum34.noarch Package on Rocky Linux 8

Last updated: May 02,2024

1. Install "python2-enum34.noarch" package

Here is a brief guide to show you how to install python2-enum34.noarch on Rocky Linux 8

$ sudo dnf update $ sudo dnf install python2-enum34.noarch

2. Uninstall "python2-enum34.noarch" package

Please follow the guidelines below to uninstall python2-enum34.noarch on Rocky Linux 8:

$ sudo dnf remove python2-enum34.noarch $ sudo dnf autoremove

3. Information about the python2-enum34.noarch package on Rocky Linux 8

Last metadata expiration check: 0:59:00 ago on Mon Sep 12 10:27:18 2022.
Available Packages
Name : python2-enum34
Version : 1.1.6
Release : 8.el8
Architecture : noarch
Size : 58 k
Source : python-enum34-1.1.6-8.el8.src.rpm
Repository : epel
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.