How to Install and Uninstall python3-blist.x86_64 Package on Oracle Linux 8

Last updated: June 16,2024

1. Install "python3-blist.x86_64" package

Learn how to install python3-blist.x86_64 on Oracle Linux 8

$ sudo dnf update $ sudo dnf install python3-blist.x86_64

2. Uninstall "python3-blist.x86_64" package

Please follow the guidelines below to uninstall python3-blist.x86_64 on Oracle Linux 8:

$ sudo dnf remove python3-blist.x86_64 $ sudo dnf autoremove

3. Information about the python3-blist.x86_64 package on Oracle Linux 8

Last metadata expiration check: 5:17:39 ago on Mon Sep 12 02:51:38 2022.
Available Packages
Name : python3-blist
Version : 1.3.6
Release : 23.el8
Architecture : x86_64
Size : 68 k
Source : python-blist-1.3.6-23.el8.src.rpm
Repository : epel
Summary : Faster list implementation for Python
URL : http://pypi.python.org/pypi/blist/
License : BSD
Description : The blist is a drop-in replacement for the Python list that provides
: better performance when modifying large lists. The blist package also
: provides sortedlist, sortedset, weaksortedlist, weaksortedset,
: sorteddict, and btuple types.
:
: Python's built-in list is a dynamically-sized array; to insert or
: remove an item from the beginning or middle of the list, it has to
: move most of the list in memory, i.e., O(n) operations. The blist uses
: a flexible, hybrid array/tree structure and only needs to move a small
: portion of items in memory, specifically using O(log n) operations.
:
: For small lists, the blist and the built-in list have virtually
: identical performance.
:
: Python 3 version.