Last active
November 13, 2019 21:37
-
-
Save fedetibaldo/715ad488bfe425e404ddfb02ddf2d3fd to your computer and use it in GitHub Desktop.
Operative guide. See https://stackoverflow.com/questions/4629796/issues-installing-postgis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# postgresql | |
sudo apt install postgresql-11 | |
sudo apt install postgresql-server-dev-11 | |
# dependencies | |
sudo apt install libxml2-dev | |
sudo apt install libgeos-dev | |
sudo apt install libproj-dev | |
sudo apt install libgdal-dev | |
# postgis | |
wget http://postgis.net/stuff/postgis-3.1.0dev.tar.gz | |
tar xvfz postgis-3.1.0dev.tar.gz | |
cd postgis-3.1.0dev | |
./configure | |
make | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment