ROS 學習踩坑筆記4-在moveit編譯時找不到manipulation_msgsConfig.cmake manipulation_msgs-config.cmake檔案

HarwardWu發表於2020-11-13

轉載至:https://blog.csdn.net/qq_42145185/article/details/80975975 

-- Could not find the required component 'manipulation_msgs'. The following CMake error indicates that you either need to install the package with the same name or change your environment so that it can be found.
CMake Error at /opt/ros/kinetic/share/catkin/cmake/catkinConfig.cmake:83 (find_package):
  Could not find a package configuration file provided by "manipulation_msgs"

  with any of the following names:

    manipulation_msgsConfig.cmake
    manipulation_msgs-config.cmake

這是由於少了manipulation_msgs這個包

我們在這裡安裝這個包就好了

在終端中輸入 sudo apt-get install ros-kinetic-manipulation-msgs

完成安裝後重新去編譯一下你的moveit包就行了。

 

相關文章