How to Install and Uninstall python-ruamel.ordereddict Package on openSUSE Leap

Last updated: May 18,2024

1. Install "python-ruamel.ordereddict" package

In this section, we are going to explain the necessary steps to install python-ruamel.ordereddict on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python-ruamel.ordereddict

2. Uninstall "python-ruamel.ordereddict" package

Please follow the steps below to uninstall python-ruamel.ordereddict on openSUSE Leap:

$ sudo zypper remove python-ruamel.ordereddict

3. Information about the python-ruamel.ordereddict package on openSUSE Leap

Information for package python-ruamel.ordereddict:
--------------------------------------------------
Repository : Main Repository
Name : python-ruamel.ordereddict
Version : 0.4.14-bp153.1.17
Arch : x86_64
Vendor : openSUSE
Installed Size : 115,3 KiB
Installed : No
Status : not installed
Source package : python-ruamel.ordereddict-0.4.14-bp153.1.17.src
Summary : Ordered dictionary
Description :
This is an implementation of an ordered dictionary with Key Insertion Order
(KIO: updates of values do not affect the position of the key), Key Value
Insertion Order (KVIO, an existing key’s position is removed and put at the
back). The standard library module OrderedDict, implemented later, implements
a subset of ordereddict functionality.
Sorted dictionaries are also provided. Currently only with Key Sorted Order
(KSO, no sorting function can be specified, but you can specify a transform to
apply on the key before comparison (e.g. string.lower)).