You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Linux, I used sudo apt install libpcl-dev to install, but the following problems occurred when I catkin_make. I hope it can be solved. Thank you.
CMake Error at CMakeLists.txt:12 (find_package):
Could not find a configuration file for package "PCL" that is compatible
with requested version "1.12".
The following configuration files were considered but not accepted:
From apt you got PCL 1.10.0. In the CMakeLists.txt, there is a line like find_package(PCL 1.12), which means that the package needs PCL in the version 1.12 or higher (so for example PCL 1.12.0, PCL 1.12.1, PCL 1.13.0, PCL 1.13.1, ...). In the error message, CMake informs you that it has found the PCL 1.10.0 installation, but will not use it because it does not match the requested version. So you have to install a newer PCL version, for example by building from source. Here are some hints how to do that: https://pcl.readthedocs.io/projects/tutorials/en/master/compiling_pcl_posix.html#compiling-pcl-posix
In Linux, I used sudo apt install libpcl-dev to install, but the following problems occurred when I catkin_make. I hope it can be solved. Thank you.
CMake Error at CMakeLists.txt:12 (find_package):
Could not find a configuration file for package "PCL" that is compatible
with requested version "1.12".
The following configuration files were considered but not accepted:
The text was updated successfully, but these errors were encountered: