Could not find a package configuration file provided by "PCL" (requested version 1.7) with any of the following names: PCLConfig.cmake pcl-config.cmake
时间: 2023-10-21 11:11:58 浏览: 297
It seems like you encountered an error related to PCL (Point Cloud Library) package configuration file when you were to build a project. This error message indicates that required PCL package configuration file could not be found in the specified search paths.
To resolve this issue, you may need to check the installation of P library and make sure it properly installed on your system. You should also check if the PCL package path is correctly set in your project's configuration file.
If you are using a Linux-based system, you can try installing PCL using your package manager. For example, on Ubuntu, you can install PCL by running the following command in the terminal:
```
sudo apt-get install libpcl-dev
```
On Windows, you can download and install the PCL library from the official website and set the PCL_ROOT environment variable to the installation directory.
Once you have installed PCL and set the correct paths, you should be able to build your project without encountering this error.
阅读全文