If you want to install Apache AGE to use with Python, you need first to install Apache AGE following the steps in the documentation and then follow the instructions to install the python driver according to your Apache AGE version.
The PostgreSQL versions supported are 11, 12, and 13 so far. Make sure you installed both postgresql and postgresql-server-dev or libpq-dev.
The easiest way to install Apache AGE is from the source code. Here is an example to install Python driver for PostgreSQL 13 with Apache AGE 1.3.0:
```
sudo apt-get update
sudo apt-get install python3-dev libpq-dev
git clone https://github.com/apache/age.git
cd age/drivers/python
pip install -r requirements.txt
```
If you want to install Apache AGE to use with Python, you need first to install Apache AGE following the steps in the [documentation](https://age.apache.org/age-manual/master/intro/setup.html) and then follow the instructions to [install the python driver](https://github.com/apache/age/tree/master/drivers/python) according to your Apache AGE version.
The PostgreSQL versions supported are 11, 12, and 13 so far. Make sure you installed both `postgresql` **and** `postgresql-server-dev` or `libpq-dev`.
The easiest way to install Apache AGE is from the source code. Here is an example to install Python driver for PostgreSQL 13 with Apache AGE 1.3.0:
```
sudo apt-get update
sudo apt-get install python3-dev libpq-dev
git clone https://github.com/apache/age.git
cd age/drivers/python
pip install -r requirements.txt
```