Changes between Version 64 and Version 65 of GeoDjangoInstall


Ignore:
Timestamp:
Aug 22, 2008, 4:47:56 AM (16 years ago)
Author:
brice@…
Comment:

made the library name more explicit (I spent a couple of hours trying to figure out why I had error just to understand that I should have pointer to libgeos_c.dylib and not libgeos.dylib)

Legend:

Unmodified
Added
Removed
Modified
  • GeoDjangoInstall

    v64 v65  
    7171
    7272'''Troubleshooting:''' The libgeos is a dependency of both GeoDjango directly and PostGIS. If you get errors like 'Could not find the GEOS library (tried "geos_c")' during `syncdb` or when loading the postgis functions into your database (see below), then the library is either not installed or properly linked.
    73  * The path to the GEOS library may be manually specified by setting `GEOS_LIBRARY_PATH` in your settings with the full path to the GEOS library (e.g., the `.so` for linux or `.dylib` file for mac).
     73 * The path to the GEOS library may be manually specified by setting `GEOS_LIBRARY_PATH` in your settings with the full path to the GEOS library (e.g., `/path/to/libgeos_c.so` for linux or `/path/to/libgeos_c.dylib` file for mac).
    7474 * You should also confirm at this time (if running linux) that the GEOS lib dir, likely `/usr/local/lib` is within `/etc/ld.so.conf`, then run:
    7575{{{
Back to Top