Created
November 17, 2016 22:25
-
-
Save ateucher/73b466d6978d670d7217b5127b0a2279 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew unlink gdal | |
brew tap osgeo/osgeo4mac && brew tap --repair | |
brew install gdal2 --with-armadillo \ | |
--with-complete --with-libkml --with-unsupported | |
brew link --force gdal2 | |
# Verify | |
gdal-config --version | |
# 2.1.1 | |
gdal-config --libs | |
# -L/usr/local/Cellar/gdal2/2.1.1/lib -lgdal | |
gdal-config --cflags | |
# -I/usr/local/Cellar/gdal2/2.1.1/include | |
## Then reinstall rgdal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From http://www.karambelkar.info/2016/10/gdal-2-on-mac-with-homebrew/