I was trying to import shapely.geometry and I hit this error:
import shapely.geometry
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.6/dist-packages/Shapely-1.2.14-py2.6-linux-x86_64.egg/shapely/geometry/init.py", line 4, in <module> from geo import box, shape, asShape, mapping
File "/usr/local/lib/python2.6/dist-packages/Shapely-1.2.14-py2.6-linux-x86_64.egg/shapely/geometry/geo.py", line 5, in <module> from point import Point, asPoint
File "/usr/local/lib/python2.6/dist-packages/Shapely-1.2.14-py2.6-linux-x86_64.egg/shapely/geometry/point.py", line 7, in <module>
from shapely.geos import lgeos, DimensionError
File "/usr/local/lib/python2.6/dist-packages/Shapely-1.2.14-py2.6-linux-x86_64.egg/shapely/geos.py", line 48, in <module>
free = load_dll('c').free
File "/usr/local/lib/python2.6/dist-packages/Shapely-1.2.14-py2.6-linux-x86_64.egg/shapely/geos.py", line 44, in load_dll libname, fallbacks or []))
OSError: Could not find library c or load any of its variants []
What am I missing here? Thanks!