Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 589 Bytes

installation.rst

File metadata and controls

29 lines (18 loc) · 589 Bytes

Installation

It is possible to install openleveldb with poetry:

poetry add openleveldb

or with pip:

pip install openleveldb

Verify installation

Verify that the installation has been successful and that plyvel correctly installed leveldb, if it is not already installed on the system:

python -c 'import openleveldb'

Verify that openleveldb using the tests

git clone git@github.com:lucmos/openleveldb.git
cd openleveldb
poetry run pytest .