How to Install and Uninstall python39-munkres Package on openSuSE Tumbleweed

Last updated: April 30,2024

1. Install "python39-munkres" package

Please follow the instructions below to install python39-munkres on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python39-munkres

2. Uninstall "python39-munkres" package

In this section, we are going to explain the necessary steps to uninstall python39-munkres on openSuSE Tumbleweed:

$ sudo zypper remove python39-munkres

3. Information about the python39-munkres package on openSuSE Tumbleweed

Information for package python39-munkres:
-----------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python39-munkres
Version : 1.1.4-4.7
Arch : noarch
Vendor : openSUSE
Installed Size : 60.2 KiB
Installed : No
Status : not installed
Source package : python-munkres-1.1.4-4.7.src
Upstream URL : https://software.clapper.org/munkres/
Summary : Munkres implementation for Python
Description :
The Munkres module provides an O(n^3) implementation of the Munkres
algorithm (also called the Hungarian algorithm or the Kuhn-Munkres
algorithm). The algorithm models an assignment problem as an NxM cost
matrix, where each element represents the cost of assigning the i'th
worker to the j'th job, and it figures out the least-cost solution,
choosing a single item from each row and column in the matrix, such
that no row and no column are used more than once.
This particular implementation is based on
http://csclab.murraystate.edu/~bob.pilgrim/445/munkres.html.