ggl
ggl

Reputation: 5

PDAL issues with python3.5

I installed PDAL in Conda Python3.5.6. After manually linked many ".so" files I still got err when I wanted to convert LAS to LAZ file.

Unable to open "libpdalpython.pyx": File not found

Can someone tell me how to fix it??

Upvotes: 0

Views: 240

Answers (1)

bigeyesung
bigeyesung

Reputation: 292

I have the same problem before, it looks like PDAL and python 3.5 have some conflicts. I solved it by:

conda create -n py36 python = 3.6
conda install -c conda-forge pdal==1.9.0
conda install -c conda-forge python-pdal

Upvotes: 0

Related Questions