How to Install and Uninstall python3-sortedcontainers Package on openSUSE Leap

Last updated: May 01,2024

1. Install "python3-sortedcontainers" package

This tutorial shows how to install python3-sortedcontainers on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python3-sortedcontainers

2. Uninstall "python3-sortedcontainers" package

Please follow the steps below to uninstall python3-sortedcontainers on openSUSE Leap:

$ sudo zypper remove python3-sortedcontainers

3. Information about the python3-sortedcontainers package on openSUSE Leap

Information for package python3-sortedcontainers:
-------------------------------------------------
Repository : Update repository with updates from SUSE Linux Enterprise 15
Name : python3-sortedcontainers
Version : 2.1.0-150200.3.4.1
Arch : noarch
Vendor : SUSE LLC
Installed Size : 346.1 KiB
Installed : No
Status : not installed
Source package : python-sortedcontainers-2.1.0-150200.3.4.1.src
Upstream URL : https://github.com/grantjenks/python-sortedcontainers
Summary : Sorted container data types
Description :
SortedContainers is an Apache2 licensed containers library, written in
pure-Python, and fast as C-extensions.
Python's standard library is great until you need a sorted container type. Many
will attest that you can get really far without one, but the moment you **really
need** a sorted list, dict, or set, you're faced with a dozen different
implementations, most using C-extensions without great documentation and
benchmarking.
SortedContainers takes all of the work out of Python sorted types - making your
deployment and use of Python easy. There's no need to install a C compiler or
pre-build and distribute custom extensions. Performance is a feature and testing
has 100% coverage with unit tests and hours of stress.