python3.5 的 PDAL 问题
PDAL issues with python3.5
我在 Conda Python3.5.6 中安装了 PDAL。手动链接许多“.so”文件后,当我想将 LAS 转换为 LAZ 文件时仍然出错。
Unable to open "libpdalpython.pyx": File not found
谁能告诉我如何解决?
我之前也遇到过同样的问题,貌似PDAL和python3.5有些冲突。我通过以下方式解决了它:
conda create -n py36 python = 3.6
conda install -c conda-forge pdal==1.9.0
conda install -c conda-forge python-pdal
我在 Conda Python3.5.6 中安装了 PDAL。手动链接许多“.so”文件后,当我想将 LAS 转换为 LAZ 文件时仍然出错。
Unable to open "libpdalpython.pyx": File not found
谁能告诉我如何解决?
我之前也遇到过同样的问题,貌似PDAL和python3.5有些冲突。我通过以下方式解决了它:
conda create -n py36 python = 3.6
conda install -c conda-forge pdal==1.9.0
conda install -c conda-forge python-pdal