I've been experiencing the same issue on OSX 10.8.2.$ ./manage.py shell
ImproperlyConfigured: Could not import user-defined GEOMETRY_BACKEND "geos".
I've installed Postgresapp (http://postgresapp.com/documentation), which includes Postgres 9.2.2, PostGIS 2.0.2, GEOS 3.3.5, and Proj (not sure of the version, but likely recent). Note: I also got the same error when installing postgres from homebrew. Various tutorials indicate that I should set the following in settings.py. (http://wiki.bitnami.org/Components/Django/GoeDjango_with_PostGIS_Quick_Start_Guide)GDAL_LIBRARY_PATH="/Applications/Postgres.app/Contents/MacOS/lib/libgdal.dylib"GEOS_LIBRARY_PATH="/Applications/Postgres.app/Contents/MacOS/lib/libgeos_c.dylib"GDAL_DATA="/Applications/Postgres.app/Contents/MacOS/share/gdal"Upon doing so, I get a different error.OSError: dlopen(/Applications/Postgres.app/Contents/MacOS/lib/libgeos_c.dylib, 6): Library not loaded: @executable_path/../lib/libgeos-3.3.5.dylibReferenced from: /Applications/Postgres.app/Contents/MacOS/lib/libgeos_c.dylibReason: image not foundBelow is evidence that the files from PATH statements above do exist.$ ls -la /Applications/Postgres.app/Contents/MacOS/lib/libgdal.dyliblrwxr-xr-x@ 1 jjasinski staff 15 Jan 24 20:56 /Applications/Postgres.app/Contents/MacOS/lib/libgdal.dylib -> libgdal.1.dylib$ ls -la /Applications/Postgres.app/Contents/MacOS/lib/libgeos_c.dyliblrwxr-xr-x@ 1 jjasinski staff 17 Jan 24 20:56 /Applications/Postgres.app/Contents/MacOS/lib/libgeos_c.dylib -> libgeos_c.1.dylib$ ls -ald /Applications/Postgres.app/Contents/MacOS/share/gdaldrwxr-xr-x@ 47 jjasinski staff 1598 Jan 24 20:56 /Applications/Postgres.app/Contents/MacOS/share/gdalMy next step is to try to get this running in an Ubuntu virtual machine, but I'd really like to get it work natively in OSX.
--
You received this message because you are subscribed to the Google Groups "Django users" group.To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.Visit this group at http://groups.google.com/group/django-users?hl=en.For more options, visit https://groups.google.com/groups/opt_out.