当前位置:网站首页>ROS compilation error: could not find a package configuration file provided by "XXX“

ROS compilation error: could not find a package configuration file provided by "XXX“

2022-06-11 04:59:00 Immediately

solve :

The system prompts what package is missing , Just install any package :sudo apt-get install ros-noetic-***, Change relevant contents according to your own system and error prompt .

Example :
1)

CMake Error at /opt/ros/noetic/share/catkin/cmake/catkinConfig.cmake:83 (find_package):
  Could not find a package configuration file provided by "image_transport"
  with any of the following names:

    image_transportConfig.cmake
    image_transport-config.cmake

  Add the installation prefix of "image_transport" to CMAKE_PREFIX_PATH or
  set "image_transport_DIR" to a directory containing one of the above files.
  If "image_transport" provides a separate development package or SDK, be
  sure it has been installed.
Call Stack (most recent call first):
  zed-ros-wrapper/zed_nodelets/CMakeLists.txt:41 (find_package)


-- Configuring incomplete, errors occurred!
See also "/home/sjj/ZED_WS/build/CMakeFiles/CMakeOutput.log".
See also "/home/sjj/ZED_WS/build/CMakeFiles/CMakeError.log".
Invoking "cmake" failed

Command line solution :

sudo apt-get install ros-noetic-image-transport

2)

CMake Error at /opt/ros/noetic/share/catkin/cmake/catkinConfig.cmake:83 (find_package):
  Could not find a package configuration file provided by "tf2_ros" with any
  of the following names:

    tf2_rosConfig.cmake
    tf2_ros-config.cmake

  Add the installation prefix of "tf2_ros" to CMAKE_PREFIX_PATH or set
  "tf2_ros_DIR" to a directory containing one of the above files.  If
  "tf2_ros" provides a separate development package or SDK, be sure it has
  been installed.
Call Stack (most recent call first):
  zed-ros-wrapper/zed_nodelets/CMakeLists.txt:41 (find_package)

Command line solution :

sudo apt-get install ros-noetic-tf2-ros
原网站

版权声明
本文为[Immediately]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/03/202203020544048737.html