美文网首页
rtree安装

rtree安装

作者: ningyu | 来源:发表于2016-03-30 11:50 被阅读220次

    1.安装libspatialindex

     ./configure; make; make install
    

    2.安装rtree

        easy_install Rtree
    

    使用该命令安装时没有提示错误,但是在使用时提示找不到rtree包。所以后面从源代码进行安装。

    下载rtree

    然后执行

    python setup.py install
    

    遇到如下错误:

    OSError: libspatialindex_c.so.4: cannot open shared object file: No such file or director
    

    解决办法:

    打开/etc/ld.so.conf
    sudo vim /etc/ld.so.conf

    把libspatialindex的安装路径(默认安装路径是/usr/local/lib)加到最后.如下:

        include ld.so.conf.d/*.conf
        /usr/local/lib/
    

    然后执行

    sudo ldconfig
    

    最后开始安装:

    sudo python setup.py install
    

    参考:

    1.http://www.cnblogs.com/ottll/p/5124903.html?utm_source=itdadao&utm_medium=referral

    相关文章

      网友评论

          本文标题:rtree安装

          本文链接:https://www.haomeiwen.com/subject/pmpjlttx.html