Skip to content

Instantly share code, notes, and snippets.

@srividyacb
Forked from mojodna/README.md
Created November 1, 2019 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srividyacb/f3691045e63a4dad69d6616a3421c5ea to your computer and use it in GitHub Desktop.
Save srividyacb/f3691045e63a4dad69d6616a3421c5ea to your computer and use it in GitHub Desktop.
GDAL 2.0 on Amazon Linux
sudo yum -y update
sudo yum-config-manager --enable epel
sudo yum -y install make automake gcc gcc-c++ libcurl-devel proj-devel geos-devel
cd /tmp
curl -L http://download.osgeo.org/gdal/2.0.0/gdal-2.0.0.tar.gz | tar zxf -
cd gdal-2.0.0/
./configure --prefix=/usr/local --without-python
make -j4
sudo make install
cd /usr/local
tar zcvf ~/gdal-2.0.0-amz1.tar.gz *
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment