美文网首页
rtree库的安装

rtree库的安装

作者: JOHNNYHU_a1f5 | 来源:发表于2020-12-26 13:12 被阅读0次

因为trimesh需要使用rtree,运行的时候提示找不到rtree

如果执行还是会有问题

pip install rtree

还需要执行

sudo apt install libspatialindex-dev

如果是macOS系统,执行

brew install spatialindex

否则无法运行,后来发现其实rtree是封装了libspacialindex的so,所以依赖这个lib。

DESCRIPTION

    Rtree provides Python bindings to libspatialindex for quick

    hyperrectangular intersection queries.

参考链接:

https://github.com/mikedh/trimesh/issues/941

相关文章

  • rtree库的安装

    因为trimesh需要使用rtree,运行的时候提示找不到rtree 如果执行还是会有问题 pip install...

  • rtree安装

    1.安装libspatialindex 2.安装rtree 使用该命令安装时没有提示错误,但是在使用时提示找不到r...

  • python Rtree 安装

    Windows 10 + python 2.7 : 失败回顾:从https://pypi.python.org/p...

  • linux 设置So动态库链接路径

    https://yq.aliyun.com/articles/339743 python的包Rtree(Rtree...

  • JTS RTREE

  • RhinoCommon:空间检测

    RhinoCommon 借助RTree 执行空间检测代码如下:

  • ubuntu16.04 安装 nginx

    1 - apt 安装 安装依赖库 安装gcc g++的依赖库 安装pcre依赖库 安装zlib依赖库 安装ssl依...

  • ubuntu安装nginx

    安装gcc g++的依赖库 安装pcre依赖库 安装zlib依赖库 安装SSL依赖库 安装Nginx 配置软链接 ...

  • nginx学习(1)

    安装依赖库 安装pcre库 pcre库是对正则表达式的支持。安装命令如下: 安装Openssl库 Openssl库...

  • 编译安装itpp库

    1.安装blas库 2.安装cblas库 3.安装lapack库 4.安装itpp库

网友评论

      本文标题:rtree库的安装

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