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

在这里插入图片描述

解决方案

下载源码并安装

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

猜你喜欢

转载自blog.csdn.net/qq_36497369/article/details/128671607