packages icon indicating copy to clipboard operation
packages copied to clipboard

Missing package: GDAL

Open bennuttall opened this issue 7 years ago • 1 comments

Missing package Package name: GDAL Link to PyPI page: https://pypi.org/project/gdal Link to piwheels page: https://www.piwheels.org/project/gdal Version: all

bennuttall avatar Oct 01 '18 14:10 bennuttall

These are the commands I use to compile GDAL:

sudo apt-get -y install libgdal-dev
# Install newest point release that matches the installed GDAL version
pip install --global-option=build_ext --global-option="-I/usr/include/gdal" gdal==$(gdal-config --version | sed -E 's/([0-9]\.[0-9]\.)[0-9]/\1\*/')

Note that the user will also need the following package to use it:

sudo apt-get -y install libgdal20

Lauszus avatar Oct 12 '18 18:10 Lauszus