【bug】Could not find a package configuration file provided by “libuvc” encountered in ROS compilation

Problem Description

Encountered the following problems when compiling ros

Could not find a package configuration file provided by "libuvc" with any
  of the following names:

    libuvcConfig.cmake
    libuvc-config.cmake

insert image description here

solution

Download the source code and install

git clone https://github.com/libuvc/libuvc
cd libuvc
mkdir build
cd build
cmake ..
make && sudo make install

Guess you like

Origin blog.csdn.net/qq_36497369/article/details/128671607