How to Install and Uninstall perl-Heap.noarch Package on Red Hat Enterprise Linux 9 (RHEL 9)

Last updated: October 06,2024

1. Install "perl-Heap.noarch" package

In this section, we are going to explain the necessary steps to install perl-Heap.noarch on Red Hat Enterprise Linux 9 (RHEL 9)

$ sudo dnf update $ sudo dnf install perl-Heap.noarch

2. Uninstall "perl-Heap.noarch" package

Please follow the guidance below to uninstall perl-Heap.noarch on Red Hat Enterprise Linux 9 (RHEL 9):

$ sudo dnf remove perl-Heap.noarch $ sudo dnf autoremove

3. Information about the perl-Heap.noarch package on Red Hat Enterprise Linux 9 (RHEL 9)

Last metadata expiration check: 2:33:24 ago on Mon Feb 26 07:04:30 2024.
Available Packages
Name : perl-Heap
Version : 0.80
Release : 38.el9
Architecture : noarch
Size : 43 k
Source : perl-Heap-0.80-38.el9.src.rpm
Repository : epel
Summary : Perl extension for keeping data partially sorted
URL : https://metacpan.org/release/Heap
License : GPL+ or Artistic
Description : The Heap collection of modules provide routines that manage a heap of
: elements. A heap is a partially sorted structure that is always able to
: easily extract the smallest of the elements in the structure (or the
: largest if a reversed compare routine is provided).
:
: If the collection of elements is changing dynamically, the heap has less
: overhead than keeping the collection fully sorted.
:
: The elements must be objects as described in "Heap::Elem" and all
: elements inserted into one heap must be mutually compatible - either
: the same class exactly or else classes that differ only in ways unrelated
: to the Heap::Elem interface.