How to Install and Uninstall python3-indexed-gzip.x86_64 Package on Fedora 39

Last updated: October 10,2024

1. Install "python3-indexed-gzip.x86_64" package

This guide let you learn how to install python3-indexed-gzip.x86_64 on Fedora 39

$ sudo dnf update $ sudo dnf install python3-indexed-gzip.x86_64

2. Uninstall "python3-indexed-gzip.x86_64" package

Please follow the step by step instructions below to uninstall python3-indexed-gzip.x86_64 on Fedora 39:

$ sudo dnf remove python3-indexed-gzip.x86_64 $ sudo dnf autoremove

3. Information about the python3-indexed-gzip.x86_64 package on Fedora 39

Last metadata expiration check: 0:38:03 ago on Thu Mar 7 17:44:52 2024.
Available Packages
Name : python3-indexed-gzip
Version : 1.8.7
Release : 1.fc39
Architecture : x86_64
Size : 601 k
Source : python-indexed_gzip-1.8.7-1.fc39.src.rpm
Repository : updates
Summary : Fast random access of gzip files in Python
URL : https://github.com/pauldmccarthy/indexed_gzip
License : Zlib
Description : The indexed_gzip project is a Python extension which aims to provide a drop-in
: replacement for the built-in Python gzip.GzipFile class, the IndexedGzipFile.
:
: indexed_gzip was written to allow fast random access of compressed NIFTI image
: files (for which GZIP is the de-facto compression standard), but will work with
: any GZIP file. indexed_gzip is easy to use with nibabel.
:
: The standard gzip.GzipFile class exposes a random access-like interface (via
: its seek and read methods), but every time you seek to a new point in the
: uncompressed data stream, the GzipFile instance has to start decompressing from
: the beginning of the file, until it reaches the requested location.
:
: An IndexedGzipFile instance gets around this performance limitation by building
: an index, which contains *seek points*, mappings between corresponding
: locations in the compressed and uncompressed data streams. Each seek point is
: accompanied by a chunk (32KB) of uncompressed data which is used to initialize
: the decompression algorithm, allowing us to start reading from any seek point.
: If the index is built with a seek point spacing of 1MB, we only have to
: decompress (on average) 512KB of data to read from any location in the file.