How to Install and Uninstall python38-lmdb Package on openSuSE Tumbleweed

Last updated: June 07,2024

1. Install "python38-lmdb" package

In this section, we are going to explain the necessary steps to install python38-lmdb on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python38-lmdb

2. Uninstall "python38-lmdb" package

This tutorial shows how to uninstall python38-lmdb on openSuSE Tumbleweed:

$ sudo zypper remove python38-lmdb

3. Information about the python38-lmdb package on openSuSE Tumbleweed

Information for package python38-lmdb:
--------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python38-lmdb
Version : 1.2.1-1.3
Arch : x86_64
Vendor : openSUSE
Installed Size : 405,8 KiB
Installed : No
Status : not installed
Source package : python-lmdb-1.2.1-1.3.src
Summary : Universal Python binding for the LMDB 'Lightning' Database
Description :
This is a universal Python binding for the LMDB 'Lightning' Database.
LMDB is a tiny database with the following properties:
* Ordered map interface (keys are always lexicographically sorted).
* Reader/writer transactions: readers don’t block writers,
writers don’t block readers.
Each environment supports one concurrent write transaction.
* Cheap read transactions.
* Environments may be opened by multiple processes on the same host.
* Multiple named databases may be created with transactions covering
all named databases.
* Memory mapped, allowing for zero copy lookup and iteration.
This is optionally exposed to Python using the buffer() interface.
* Maintenance requires no external process or background threads.
* No application-level caching is required:
LMDB uses the operating system’s buffer cache.