How to Install and Uninstall python36-HeapDict Package on openSuSE Tumbleweed

Last updated: December 25,2024

1. Install "python36-HeapDict" package

This is a short guide on how to install python36-HeapDict on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python36-HeapDict

2. Uninstall "python36-HeapDict" package

This guide covers the steps necessary to uninstall python36-HeapDict on openSuSE Tumbleweed:

$ sudo zypper remove python36-HeapDict

3. Information about the python36-HeapDict package on openSuSE Tumbleweed

Information for package python36-HeapDict:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python36-HeapDict
Version : 1.0.1-2.5
Arch : noarch
Vendor : openSUSE
Installed Size : 14,1 KiB
Installed : No
Status : not installed
Source package : python-HeapDict-1.0.1-2.5.src
Summary : A heap with decrease-key and increase-key operations
Description :
HeapDict implements the MutableMapping ABC, meaning it works pretty
much like a regular Python dict. It's designed to be used as a
priority queue.
Unlike the Python standard library's heapq module, the HeapDict
supports efficiently changing the priority of an existing object
(often called "decrease-key" in textbooks). Altering the priority is
important for many algorithms such as Dijkstra's Algorithm and A*.