Skip to content

Instantly share code, notes, and snippets.

View saheelBreezo's full-sized avatar
🌏
Focusing

Saheel Ahmed saheelBreezo

🌏
Focusing
View GitHub Profile
@saheelBreezo
saheelBreezo / gdal-installation.sh
Created May 14, 2020 14:24
Installation process for GDAL on Ubuntu with pip
#!/usr/bin/env bash
sudo add-apt-repository ppa:ubuntugis/ppa && sudo apt-get update
sudo apt-get update
sudo apt-get install gdal-bin
sudo apt-get install libgdal-dev
export CPLUS_INCLUDE_PATH=/usr/include/gdal
export C_INCLUDE_PATH=/usr/include/gdal
pip install GDAL