Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 272 Bytes

postgis.md

File metadata and controls

25 lines (17 loc) · 272 Bytes

Postgis Installation

Install using apt

sudo apt install postgis

(OR)

sudo apt install postgis postgresql-15-postgis-3

Enable PostGIS

CREATE EXTENSION postgis SCHEMA public;

Test

SELECT postgis_full_version();