Skip to content

Instantly share code, notes, and snippets.

@connormanning
Last active April 1, 2025 00:50
Show Gist options
  • Save connormanning/c2c9b5e8f56b1e8d524b8717e33729bd to your computer and use it in GitHub Desktop.
Save connormanning/c2c9b5e8f56b1e8d524b8717e33729bd to your computer and use it in GitHub Desktop.
Installing PDAL/Entwine/Greyhound natively (OS X)
brew tap osgeo/osgeo4mac geos
brew install cmake points2grid gdal libgeotiff libxml2 jsoncpp nitro sqlite laszip xz curl ninja
git clone [email protected]:hobu/laz-perf.git && cd laz-perf
mkdir build && cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
ninja install
git clone [email protected]:PDAL/PDAL.git pdal && cd pdal
mkdir build && cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DWITH_LAZPERF=ON -DWITH_LASZIP=ON -DBUILD_PLUGIN_GREYHOUND=ON ..
ninja install
git clone [email protected]:connormanning/entwine.git && cd entwine
mkdir build && cd build
cmake -G Ninja ..
ninja install
git clone [email protected]:hobu/greyhound.git && cd greyhound
mkdir build && cd build
cmake -G Ninja ..
make && make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment