strawlab / python-pcl

Python bindings to the pointcloud library (pcl)
http://strawlab.github.com/python-pcl/
Other
2.01k stars 700 forks source link

pcl failed to install on Mac OS 10.13 #129

Open lingxiao opened 7 years ago

lingxiao commented 7 years ago

OS: macOS High Sierra 10.13 Python version: 2.7.13 |Anaconda custom (x86_64)

I tried installing pcl with both brew and conda.

I made sure brew is up to date and then did brew install pcl, when I opened python on the console and tried to import pcl, I get message "no module named pcl". I also tried install the latest version with brew install pcl --HEAD, and still not luck. The only error message I got was this:

warning: pcl dependency gcc was built with a different C++ standard library (libstdc++ from clang). This may cause problems at runtime. screen shot 2017-10-16 at 8 24 48 pm

When I tried to install using Conda following this direction: https://anaconda.org/ccordoba12/python-pcl, I get error:

UnsatisfiableError: The following specifications were found to be in conflict:

Sirokujira commented 7 years ago

There is a possibility that python-pcl on conda side does not correspond to 1.8 pcl. (As the code before merging, the check of pkg - config did not correspond to 1.8.)

varun19299 commented 6 years ago

This worked for me: conda install -c ccordoba12 python-pcl

with python 2.7.14