GitKV

Installation

gitkv depends on libgit2, which in turns depends on cffi. pip can not, unfortunately, install those dependencies. You should use your system’s package manager or install them from source. On a Debian host, one can run:

# apt-get install libffi-dev libgit2-dev

The pygit2 python package should then be installed in a version that matches your system’s version of libgit2. You can know which version that is by running:

$ apt-cache show libgit2-dev

You can then install the matching python package (in our case version 0.21):

# pip3 install pygit2==0.21

Now, installing gitkv should work via pip:

# pip3 install gitkv