ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

roslint error

asked 2015-03-02 13:14:27 -0500

Gurj gravatar image

updated 2015-08-18 01:32:08 -0500

ahendrix gravatar image

I am trying to perform an extrinsic calibration based on the following tutorial: http://wiki.ros.org/industrial_extrin...

I have installed all the dependencies outlines and when I try catkin_make before carrying out the steps outlined in the tutorial I get the following errors:

...catkinConfig.cmake:75 (find_package):
  Could not find a configuration file for package roslint.

  Set roslint_DIR to the directory containing a CMake configuration file for
  roslint.  The file will have one of the following names:

    roslintConfig.cmake
    roslint-config.cmake

And

...CMakeLists.txt:206 (roslint_cpp):
  Unknown CMake command "roslint_cpp".

Anybody ever have the same problem or could help in fixing it? Thanks

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
4

answered 2015-03-02 15:27:12 -0500

gvdhoorn gravatar image

updated 2015-03-03 02:11:31 -0500

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.

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2015-03-02 13:14:27 -0500

Seen: 7,033 times

Last updated: Mar 03 '15