How to Install and Uninstall python3-immutables.x86_64 Package on Rocky Linux 9

Last updated: May 17,2024

1. Install "python3-immutables.x86_64" package

Here is a brief guide to show you how to install python3-immutables.x86_64 on Rocky Linux 9

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

2. Uninstall "python3-immutables.x86_64" package

This tutorial shows how to uninstall python3-immutables.x86_64 on Rocky Linux 9:

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

3. Information about the python3-immutables.x86_64 package on Rocky Linux 9

Last metadata expiration check: 1:46:33 ago on Fri Feb 16 06:49:52 2024.
Available Packages
Name : python3-immutables
Version : 0.18
Release : 1.el9
Architecture : x86_64
Size : 52 k
Source : python-immutables-0.18-1.el9.src.rpm
Repository : epel
Summary : Immutable Collections
URL : https://github.com/MagicStack/immutables
License : ASL 2.0 and 0BSD
Description : An immutable mapping type for Python.
:
: The underlying datastructure is a Hash Array Mapped Trie (HAMT) used in
: Clojure, Scala, Haskell, and other functional languages. This implementation is
: used in CPython 3.7 in the contextvars module (see PEP 550 and PEP 567 for more
: details).
:
: Immutable mappings based on HAMT have O(log N) performance for both set() and
: get() operations, which is essentially O(1) for relatively small mappings.