ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | Q&A answers.ros.org |
![]() | 1 | initial version |
I have installed all the dependencies outline(d) [..]
Could you detail how you checked that you installed all dependencies (rosdep
)?
The error simply states that you don't have roslint installed.
You should be able to install it using sudo apt-get install ros-hydro-roslint
.
![]() | 2 | No.2 Revision |
I have installed all the dependencies outline(d) [..]
Could you detail how you checked that you installed all dependencies (rosdep
)?
The error simply states that you don't have roslint installed.
Could you detail how you checked that you installed all dependencies? rosdep
should pick up on the dependency, as the package manifest for industrial_extrinsic_cal
does list it:
<?xml version="1.0"?>
<package>
<name>industrial_extrinsic_cal</name>
...
<build_depend>roslint</build_depend>
...
</package>
You should be able to install it using sudo apt-get install ros-hydro-roslint
.
![]() | 3 | No.3 Revision |
I have installed all the dependencies outline(d) [..]
The error simply states that you don't have roslint installed.
Could you detail how you checked that you installed all dependencies? rosdep
should pick up on the dependency, as the package manifest for industrial_extrinsic_cal
does list it:
<?xml version="1.0"?>
<package>
<name>industrial_extrinsic_cal</name>
...
<build_depend>roslint</build_depend>
...
</package>
You should be able to install it using sudo apt-get install ros-hydro-roslint
.
For future reference: use
rosdep check --from-paths /path/to/your/catkin_ws/src --ignore-src
to check that you have all (build) dependencies installed.
You can use rosdep install ..
to have rosdep
install any dependencies that it determines are missing.