Wie man ROS2-Fehler controller_interfaceConfig.cmake auf Ubuntu behebt

Problem

Beim Versuch, ein ROS-Paket mit colcon build zu bauen, sehen Sie eine Fehlermeldung wie

CMakeLists.txt
CMake Error at CMakeLists.txt:10 (find_package):
  By not providing "Findcontroller_interface.cmake" in CMAKE_MODULE_PATH this
  project has asked CMake to find a package configuration file provided by
  "controller_interface", but CMake did not find one.

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

    controller_interfaceConfig.cmake
    controller_interface-config.cmake

  Add the installation prefix of "controller_interface" to CMAKE_PREFIX_PATH
  or set "controller_interface_DIR" to a directory containing one of the
  above files.  If "controller_interface" provides a separate development
  package or SDK, be sure it has been installed.

Lösung

Installieren Sie das ros-<distro>-controller-interface-Paket. Für ROS2 Jazzy beispielsweise führen Sie aus

install_controller_interface.sh
sudo apt install ros-jazzy-controller-interface

Check out similar posts by category: ROS