Skip to content

Instantly share code, notes, and snippets.

@danabauer
Forked from cspanring/pip-install-gdal.md
Created May 2, 2017 20:08
Show Gist options
  • Save danabauer/55be513def40f5a69616fdca13132d31 to your computer and use it in GitHub Desktop.
Save danabauer/55be513def40f5a69616fdca13132d31 to your computer and use it in GitHub Desktop.
Installing GDAL in a Python virtual environment

Installing GDAL in a Python virtual environment

Get gdal development libraries:

$ sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstable
$ sudo apt-get update
$ sudo apt-get install libgdal-dev

Create and activate a virtual environment:

$ virtualenv gdalenv
$ source gdal/bin/activate

Download GDAL:

(gdalenv) $ pip install --no-install GDAL

Specify where the headers are:

(gdalenv) $ cd /path/to/gdalenv/build/GDAL
(gdalenv) $ python setup.py build_ext --include-dirs=/usr/include/gdal/

Install GDAL:

(gdalenv) $ pip install --no-download GDAL

Done.


Source: http://gis.stackexchange.com/questions/28966/python-gdal-package-missing-header-file-when-installing-via-pip

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment