This is an automated email from the ASF dual-hosted git repository.
eya pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age-website.git
The following commit(s) were added to refs/heads/master by this push:
new 5adb451d Fix information about installing Postgres (#152)
5adb451d is described below
commit 5adb451d8331a7cd314c045b2781c7bdccc6e156
Author: Carla Sanches <[email protected]>
AuthorDate: Thu May 4 15:49:25 2023 -0300
Fix information about installing Postgres (#152)
* Fix information about installing Postgres
This commit fixes the instructions to install Postgres via package
management on Ubuntu.
* Add information about Postgres 13 support
---
docs/intro/setup.md | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/docs/intro/setup.md b/docs/intro/setup.md
index a451ff0e..8b2d1e09 100644
--- a/docs/intro/setup.md
+++ b/docs/intro/setup.md
@@ -37,7 +37,7 @@ sudo apt-get install build-essential libreadline-dev
zlib1g-dev flex bison
### Install Postgres
-You will need to install a AGE compatible version of Postgres, for now AGE
only supports Postgres 11 and 12.
+You will need to install a AGE compatible version of Postgres, for now AGE
only supports Postgres 11, 12 and 13.
#### Install From Source Code
@@ -45,19 +45,24 @@ You can <a
href='https://www.postgresql.org/download/'>download the Postgres sou
#### Install From a Package Manager
-You can use a package management that your OS provides to download AGE.
+You can use a package management that your OS provides to download Postgres.
#### Ubuntu
##### Postgres 11
```
-sudo apt install postgresql-server-dev-11
+sudo apt install postgresql-11 postgresql-server-dev-11
```
##### Postgres 12
```
-sudo apt install postgresql-12
+sudo apt install postgresql-12 postgresql-server-dev-12
+```
+
+##### Postgres 13
+```
+sudo apt install postgresql-13 postgresql-server-dev-13
```
### Installation