davidcaron / pclpy

Python bindings for the Point Cloud Library (PCL)
MIT License
413 stars 59 forks source link

Fix qhull dependency issue #81

Closed valgur closed 3 years ago

valgur commented 3 years ago

PCL 1.9.1 only works with qhull 2019.1 and not with the latest 2020.2 selected by default on conda-forge. Added the pinned version to meta.yaml.

Was getting

ImportError: libqhull_p.so.7: cannot open shared object file: No such file or directory

otherwise when installing with

conda install -c conda-forge -c davidcaron pclpy

This should really be fixed in https://github.com/conda-forge/pcl-feedstock/blob/master/recipe/meta.yaml but they have already moved to PCL 1.11, so I don't know if it's applicable there anymore.

davidcaron commented 3 years ago

Thanks!