You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Going back to Galactic ( Humble has issues with pointcloud ) i got this error when running install script
bash install_linorobot2.bash 2wd rplidar realsense ( Ubuntu 20.0.6 ROS2 Galactic )
(after command: rosdep install --from-path src --ignore-src -y)
ERROR: the following packages/stacks could not have their rosdep keys resolved
to system dependencies:
linorobot2_description: Cannot locate rosdep definition for [xacro]
linorobot2_navigation: Cannot locate rosdep definition for [nav2_bringup]
linorobot2_bringup: Cannot locate rosdep definition for [joy_linux]
so far i solved it with adding: rosdep update --include-eol-distros
Best regards
The text was updated successfully, but these errors were encountered:
I found out that these packages are not official ros package so you can't install them withrosdep.
Solution
Instead, you should install it with apt-get using sudo apt-get install ros-<your-distro>-<package>
Example: sudo apt-get install ros-foxy-xacro
You will also face some errors about missing packages after installing these three packages. So let me show you how to install all unofficial packages used in this project.
Going back to Galactic ( Humble has issues with pointcloud ) i got this error when running install script
bash install_linorobot2.bash 2wd rplidar realsense ( Ubuntu 20.0.6 ROS2 Galactic )
(after command: rosdep install --from-path src --ignore-src -y)
ERROR: the following packages/stacks could not have their rosdep keys resolved
to system dependencies:
linorobot2_description: Cannot locate rosdep definition for [xacro]
linorobot2_navigation: Cannot locate rosdep definition for [nav2_bringup]
linorobot2_bringup: Cannot locate rosdep definition for [joy_linux]
so far i solved it with adding: rosdep update --include-eol-distros
Best regards
The text was updated successfully, but these errors were encountered: