Skip to content

Instantly share code, notes, and snippets.

@iredmedia
Forked from mojodna/README.md
Created April 14, 2020 19:58
Show Gist options
  • Save iredmedia/137fd947cb726e786a5c7504c24f771c to your computer and use it in GitHub Desktop.
Save iredmedia/137fd947cb726e786a5c7504c24f771c 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