point to correct postgres repo

This commit is contained in:
Ed Chalstrey 2022-02-03 10:51:04 +00:00
parent cf762f8c4b
commit b7b2ca1e88

View File

@ -22,6 +22,14 @@ Now install python and related tools.
`sudo apt-get install -y python3 python3-pip python3-dev python3-venv` `sudo apt-get install -y python3 python3-pip python3-dev python3-venv`
Set the postgres repo for apt.
`sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'`
`sudo wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -`
`sudo apt-get update`
Next install postgres and postgis to enable support for geographical objects. Next install postgres and postgis to enable support for geographical objects.
`sudo apt-get install -y postgresql postgresql-contrib libpq-dev postgis postgresql-12-postgis-3` `sudo apt-get install -y postgresql postgresql-contrib libpq-dev postgis postgresql-12-postgis-3`