How to Install and Uninstall python3-heapdict.noarch Package on Fedora 36

Last updated: October 10,2024

1. Install "python3-heapdict.noarch" package

Please follow the guidelines below to install python3-heapdict.noarch on Fedora 36

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

2. Uninstall "python3-heapdict.noarch" package

Please follow the steps below to uninstall python3-heapdict.noarch on Fedora 36:

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

3. Information about the python3-heapdict.noarch package on Fedora 36

Last metadata expiration check: 2:23:17 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : python3-heapdict
Version : 1.0.1
Release : 8.fc36
Architecture : noarch
Size : 14 k
Source : python-heapdict-1.0.1-8.fc36.src.rpm
Repository : fedora
Summary : A heap with decrease-key and increase-key operations
URL : https://pypi.python.org/pypi/heapdict
License : BSD
Description : HeapDict is designed to be used as a priority queue, where items are added and
: consumed by priority. Compared to an ordinary dict, a heapdict has the
: following differences: popitem and peekitem returns the (key, priority) pair
: with the lowest priority, instead of a random object.