ROS编译遇到的【bug】Could not find a package configuration file provided by “libuvc“

问题描述

ros编译时遇到如下问题

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

    libuvcConfig.cmake
    libuvc-config.cmake

ROS编译遇到的【bug】Could not find a package configuration file provided by “libuvc“_第1张图片

解决方案

下载源码并安装

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

你可能感兴趣的:(bug,linux,ubuntu)