How to Install and Uninstall python3-lmdb Package on openSUSE Leap

Last updated: May 14,2024

1. Install "python3-lmdb" package

Please follow the steps below to install python3-lmdb on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python3-lmdb

2. Uninstall "python3-lmdb" package

Please follow the step by step instructions below to uninstall python3-lmdb on openSUSE Leap:

$ sudo zypper remove python3-lmdb

3. Information about the python3-lmdb package on openSUSE Leap

Information for package python3-lmdb:
-------------------------------------
Repository : Main Repository
Name : python3-lmdb
Version : 0.98-bp155.2.14
Arch : x86_64
Vendor : openSUSE
Installed Size : 376.4 KiB
Installed : No
Status : not installed
Source package : python-lmdb-0.98-bp155.2.14.src
Upstream URL : http://github.com/dw/py-lmdb/
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.