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

error finding ros control in catkin_make

asked 2016-08-25 00:56:09 -0500

dinesh gravatar image

updated 2016-08-25 02:21:25 -0500

I was following ros control tutorial to control robot in gazebo with ros, but as i try to build the package by running catkin_make i get this error:

-- Could not find the required component 'ros_control'. 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/indigo/share/catkin/cmake/catkinConfig.cmake:83 (find_package):
  Could not find a package configuration file provided by "ros_control" with
  any of the following names:

    ros_controlConfig.cmake
    ros_control-config.cmake

  Add the installation prefix of "ros_control" to CMAKE_PREFIX_PATH or set
  "ros_control_DIR" to a directory containing one of the above files.  If
  "ros_control" provides a separate development package or SDK, be sure it
  has been installed.
Call Stack (most recent call first):
  myrobot_control/CMakeLists.txt:7 (find_package)

my CMakeLists.txt file is:

cmake_minimum_required(VERSION 2.8.3)
project(myrobot_control)
find_package(catkin REQUIRED COMPONENTS
  ros_control
  ros_controllers
)
    catkin_package()
include_directories(
  ${catkin_INCLUDE_DIRS}
)

I installed the ros_control package using sudo apt-get install ros-indigo-ros-control but it didn't worked.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2016-08-25 03:09:42 -0500

dinesh gravatar image

Ok problem, solved i have to install 2 extra packages which is not mentioned in the documentation also, and these are:

 sudo apt-get install ros-indigo-effort-controllers
 sudo apt-get install ros-indigo-joint-state-controller
edit flag offensive delete link more

Comments

helped for me

abhay2302 gravatar image abhay2302  ( 2017-05-02 01:53:20 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2016-08-25 00:56:09 -0500

Seen: 1,791 times

Last updated: Aug 25 '16