首页 > 其他分享 >CMake Error at /opt/ros/melodic/share/catkin/cmake/catkinConfig.cmake:83 (find_package): Could not

CMake Error at /opt/ros/melodic/share/catkin/cmake/catkinConfig.cmake:83 (find_package): Could not

时间:2022-10-29 16:36:13浏览次数:46  
标签:opt melodic cmake dynamic reconfigure ros find


问题描述

ros遇到如下错误。

CMake Error at /opt/ros/melodic/share/catkin/cmake/catkinConfig.cmake:83 (find_package):
Could not find a package configuration file provided by
“dynamic_reconfigure” with any of the following names:
dynamic_reconfigureConfig.cmake
dynamic_reconfigure-config.cmake

CMake Error at /opt/ros/melodic/share/catkin/cmake/catkinConfig.cmake:83 (find_package): Could not_ubuntu

解决方案

缺包就装包。

sudo apt-get install ros-melodic-dynamic-reconfigure


标签:opt,melodic,cmake,dynamic,reconfigure,ros,find
From: https://blog.51cto.com/u_15847885/5806240

相关文章

  • 解决AxiosError: options must be an object ERR_BAD_OPTION_VALUE
    VUE中HTTP请求,AxiosError:optionsmustbeanobjectERR_BAD_OPTION_VALUE错误解决。 此错误完整为:{message:'optionsmustbeanobject',name:'AxiosError',......
  • CMake初识(一)
    一、工作流程CMake允许开发者编写一种与平台无关的CMakeList.txt文件来制定编译流程,之后根据所在的平台进一步生成本地化Makefile和工程文件(e.g.,Unix下的Makefile)......
  • python cmake 下载失败?   No CMAKE_C_COMPILER could be found.
    1.pipinstallcmake--default-timeout=100-ihttps://pypi.tuna.tsinghua.edu.cn/simple 2.第二个错误: --Buildingfor:VisualStudio162019  --Selectin......
  • Java8新特性4:Optional
    1Optional介绍Optional类是一个可以为null的容器对象。如果值存在则isPresent()方法会返回true,调用get()方法会返回该对象。Optional是个容器:它可以保存类型T的值,或者......
  • Java8 新特性04-Optional
    文章目录​​优秀的文章​​​​JDK8-Optional​​​​判断参数是否为空​​​​参数为空可以设定默认值​​​​参数实现过滤​​​​与Lambda表达式结合使用,优化代码​​......
  • CMake —— 跨平台 编译 软件 & visual studio支持
    CMakeisanopen-source,cross-platformfamilyoftoolsdesignedtobuild,testandpackagesoftware.CMakeisusedtocontrolthesoftwarecompilationprocess......
  • Ubuntu系统CMake& CMake GUI更新 (cmake & cmake-gui)
    由于CMake具有良好的向后兼容性,ModernCMake推荐用户尽量安装CMake的最新版本,然而在Ubuntu系统APT仓库中的CMake版本一般较老旧。Ubuntu20.04以下版本的用户可以使用K......
  • 使用最新版 gcc cmake
    debian获取最新的包(容器里测试常用)echo'debhttp://deb.debian.org/debiantestingmain'>>/etc/apt/sources.listaptinstall-ybuild-essentialgccg++cmake......
  • 如何在CMake中启用C++ 17
    如何在CMake中启用C++17MiP*_*MiP  38 c++ cmake visual-studio c++17 我正在使用VS15.3,它支持集成的CMake3.8.如何在不为每个特定编译器编写标志的情况下定......
  • CMake学习记录(一)
    从一个简单的例子学起首先看下面的简单示例文件结构如下Demo├─CMakeLists.txt└─main.ccCMakeLists.txt内容如下cmake_minimum_required(VERSION3.18......