How to install GQLAlchemy
There are two main ways of installing GQLAlchemy, through package managers such as pip and Poetry, and by building it from source.
Prerequisites
To install GQLAlchemy, you will need the following:
- Python 3.7 - 3.10
- CMake - You can download CMake from their official website.
caution
Install with Pip
To install GQLAlchemy with pip, simply run the following command:
pip install gqlalchemy
Building from source
The project uses Poetry to build GQLAlchemy. To build and run tests, execute the following commands:
poetry install
Before running tests, make sure you have an active Memgraph instance, then you can run:
poetry run pytest . -k "not slow"