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

Last updated: October 04,2024

1. Install "python3-heapdict.noarch" package

This tutorial shows how to install python3-heapdict.noarch on Fedora 34

$ 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 34:

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

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

Last metadata expiration check: 0:40:33 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : python3-heapdict
Version : 1.0.1
Release : 5.fc34
Architecture : noarch
Size : 14 k
Source : python-heapdict-1.0.1-5.fc34.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.