0

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??

ggl
  • 5
  • 1

1 Answers1

0

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
bigeyesung
  • 292
  • 1
  • 3
  • 11