GQLite Installation
Compile from source
From source, by default, git clone fetch the stable branch of GQLite:
git clone https://gitlab.com/auksys/GQLite.git
cd GQLite
mkdir build
cd build
cmake ..
make -j4
make install
Amalgamate
From the releases page it is possible to download an amalgamate variant of GQLite, which contains a single cpp file and two headers. This allow to easilly embedd GQLite in your own application build.
Cargo
The new engine is developed as a Rust
crate which can be used in Rust
project using cargo:
cargo add gqlitedb
Using pip (Python)
The pip package currently contains a copy of GQLite which is built during installation:
pip install gqlitedb
Using gem (Ruby)
The gem package currently contains a copy of GQLite which is built during installation:
gem install gqlite