Thanks for the pointer. Not the topic of this forum, but I'm running
into issues with Rtree. Installing spatialindex-1.4.0 creates the
libraries libspatialindex.so, libspatialindex.so.1, and
libspatialindex.so.1.0.0 but Rtree is looking for
libspatialindex_c.so. I get
...
Python 2.6.2 (release26-maint, Apr 19 2009, 01:56:41)
[GCC 4.3.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from rtree import core
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "rtree/__init__.py", line 8, in <module>
from index import Rtree
File "rtree/index.py", line 2, in <module>
import core
File "rtree/core.py", line 94, in <module>
rt = ctypes.CDLL(lib_name)
File "/usr/lib/python2.6/ctypes/__init__.py", line 353, in __init__
self._handle = _dlopen(self._name, mode)
OSError: libspatialindex_c.so: cannot open shared object file: No such
file or directory
On Sep 11, 11:23 am, Brandon Martin-Anderson <
badh...@gmail.com>
wrote:
> Hey Ryan,
>
> The import errors have two separate causes:
>
> the hello_world.py error is caused by (as usual) depricated code hanging
> around in the codebase. The class TripHopSchedule has been removed, and
> hello_world.py is in need of an update.
>
> As far as rtree goes - you probably don't have rtree! Information and
> installation here:
http://pypi.python.org/pypi/Rtree/
>
> -B
>