Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 197 Bytes

dj_postgis_fix_deps.md

File metadata and controls

11 lines (9 loc) · 197 Bytes

Fix geos and gdal library paths

settings.py:

...
# Geodjango deps
GDAL_LIBRARY_PATH = glob("/usr/lib/libgdal.so.*")[0]
GEOS_LIBRARY_PATH = glob("/usr/lib/libgeos_c.so.*")[0]
...