我在CondaPython3.5.6中安装了PDAL。在手动链接了许多".so“文件之后,当我想将LAS转换为LAZ文件时,我还是会出错。
Unable to open "libpdalpython.pyx": File not found有人能告诉我怎么修吗??
发布于 2019-07-21 11:46:13
我以前也有同样的问题,看起来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-pdalhttps://stackoverflow.com/questions/57132868
复制相似问题