I cloned the iri_wam package for ROS Noetic to my local machine and put in my /catkin_ws/src
directory. However, when I run catkin_make
I get
❯ catkin_make
Base path: /home/bolun/catkin_ws
Source space: /home/bolun/catkin_ws/src
Build space: /home/bolun/catkin_ws/build
Devel space: /home/bolun/catkin_ws/devel
Install space: /home/bolun/catkin_ws/install
####
#### Running command: "make cmake_check_build_system" in "/home/bolun/catkin_ws/build"
####
-- Using CATKIN_DEVEL_PREFIX: /home/bolun/catkin_ws/devel
-- Using CMAKE_PREFIX_PATH: /opt/ros/noetic;/usr/local;/home/bolun/ros2_ws/install/zed_ros2;/home/bolun/ros2_ws/install/zed_display_rviz2;/home/bolun/ros2_ws/install/zed_wrapper;/home/bolun/ros2_ws/install/zed_tutorial_video;/home/bolun/ros2_ws/install/zed_tutorial_pos_tracking;/home/bolun/ros2_ws/install/zed_tutorial_depth;/home/bolun/ros2_ws/install/zed_rgb_convert;/home/bolun/ros2_ws/install/zed_components;/home/bolun/ros2_ws/install/rviz_plugin_zed_od;/home/bolun/ros2_ws/install/zed_interfaces
-- This workspace overlays: /opt/ros/noetic
-- Found PythonInterp: /usr/bin/python3 (found suitable version "3.8.10", minimum required is "3")
-- Using PYTHON_EXECUTABLE: /usr/bin/python3
-- Using Debian Python package layout
-- Using empy: /usr/lib/python3/dist-packages/em.py
-- Using CATKIN_ENABLE_TESTING: ON
-- Call enable_testing()
-- Using CATKIN_TEST_RESULTS_DIR: /home/bolun/catkin_ws/build/test_results
-- Forcing gtest/gmock from source, though one was otherwise available.
-- Found gtest sources under '/usr/src/googletest': gtests will be built
-- Found gmock sources under '/usr/src/googletest': gmock will be built
-- Found PythonInterp: /usr/bin/python3 (found version "3.8.10")
-- Using Python nosetests: /usr/bin/nosetests3
-- catkin 0.8.10
-- BUILD_SHARED_LIBS is on
-- BUILD_SHARED_LIBS is on
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-- ~~ traversing 7 packages in topological order:
-- ~~ - iri_wam_meshes
-- ~~ - trajectory_by_name_srv
-- ~~ - iri_wam_reproduce_trajectory
-- ~~ - iri_wam_aff_demo
-- ~~ - trajectory_by_name
-- ~~ - iri_wam_description
-- ~~ - iri_wam_gazebo
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-- +++ processing catkin package: 'iri_wam_meshes'
-- ==> add_subdirectory(iri_wam/iri_wam_meshes)
-- +++ processing catkin package: 'trajectory_by_name_srv'
-- ==> add_subdirectory(iri_wam/trajectory_by_name_srv)
-- Using these message generators: gencpp;geneus;genlisp;gennodejs;genpy
-- trajectory_by_name_srv: 0 messages, 1 services
-- +++ processing catkin package: 'iri_wam_reproduce_trajectory'
-- ==> add_subdirectory(iri_wam/iri_wam_reproduce_trajectory)
-- Using these message generators: gencpp;geneus;genlisp;gennodejs;genpy
-- iri_wam_reproduce_trajectory: 0 messages, 1 services
-- +++ processing catkin package: 'iri_wam_aff_demo'
-- ==> add_subdirectory(iri_wam/iri_wam_aff_demo)
-- Using these message generators: gencpp;geneus;genlisp;gennodejs;genpy
-- +++ processing catkin package: 'trajectory_by_name'
-- ==> add_subdirectory(iri_wam/trajectory_by_name)
-- +++ processing catkin package: 'iri_wam_description'
-- ==> add_subdirectory(iri_wam/iri_wam_description)
-- Could NOT find hokuyo (missing: hokuyo_DIR)
-- Could not find the required component 'hokuyo'. 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/noetic/share/catkin/cmake/catkinConfig.cmake:83 (find_package):
Could not find a package configuration file provided by "hokuyo" with any
of the following names:
hokuyoConfig.cmake
hokuyo-config.cmake
Add the installation prefix of "hokuyo" to CMAKE_PREFIX_PATH or set
"hokuyo_DIR" to a directory containing one of the above files. If "hokuyo"
provides a separate development package or SDK, be sure it has been
installed.
Call Stack (most recent call first):
iri_wam/iri_wam_description/CMakeLists.txt:9 (find_package)
-- Configuring incomplete, errors occurred!
See also "/home/bolun/catkin_ws/build/CMakeFiles/CMakeOutput.log".
See also "/home/bolun/catkin_ws/build/CMakeFiles/CMakeError.log".
make: *** [Makefile:320: cmake_check_build_system] Error 1
Invoking "make cmake_check_build_system" failed
Is it possible to help me take a look at this and see what to do? I was trying to install hokuyo_node
, however, they do not have a version for Noetic.
Thanks in advance!