How to Install and Uninstall python2-bitarray Package on openSUSE Leap

Last updated: May 18,2024

1. Install "python2-bitarray" package

Please follow the step by step instructions below to install python2-bitarray on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python2-bitarray

2. Uninstall "python2-bitarray" package

Learn how to uninstall python2-bitarray on openSUSE Leap:

$ sudo zypper remove python2-bitarray

3. Information about the python2-bitarray package on openSUSE Leap

Information for package python2-bitarray:
-----------------------------------------
Repository : Main Repository
Name : python2-bitarray
Version : 1.2.1-bp153.1.18
Arch : x86_64
Vendor : openSUSE
Installed Size : 491,9 KiB
Installed : No
Status : not installed
Source package : python-bitarray-1.2.1-bp153.1.18.src
Summary : Efficient Arrays of Booleans
Description :
This module provides an object type which efficiently represents an
array of booleans. Bitarrays are sequence types and behave very
much like usual lists. Eight bits are represented by one byte in a
contiguous block of memory. The user can select between two
representations; little-endian and big-endian.
All of the functionality is implemented in C. Methods for accessing
the machine representation are provided. This can be useful when
bit level access to binary files is required, such as portable
bitmap image files (.pbm).
Also, when dealing with compressed data which uses variable bit
length encoding, you may find this module useful.