Skip to content

3.1 Installation

Ivar Eriksen edited this page Dec 13, 2017 · 2 revisions
  1. Install ROS Kinetic

Follow guide for ROS Kinetic at http://wiki.ros.org/kinetic/Installation/Ubuntu

  1. Install MoveIT!

sudo apt-get install ros-kinetic-moveit

  1. Install ROS-Industrial

sudo apt-get install ros-kinetic-industrial-core

  1. Create a catkin workspace

(See http://wiki.ros.org/ROS/Tutorials/InstallingandConfiguringROSEnvironment )

  1. Download needed repositories into CATKIN_WS/src

    1. Need patches to the RSI driver thats not in the offical kuka_experimental repo

    git clone https://github.com/itk-thrivaldi/kuka_experimental.git

    1. Install the bio-ik kinematics solver from TAMS-group

    git clone https://github.com/TAMS-Group/bio_ik.git

    1. URDF and other needed packages

    git clone https://github.com/itk-thrivaldi/thrivaldi_common.git

  2. Install missing dependencies

Run rosdep from CATKIN_WS/src

rosdep install --from-paths ./ --ignore-src --rosdistro kinetic -y

  1. Compile packages

run catkin_make from CATKIN_WS

  1. Test

roslaunch robotlab_moveit_config moveit_planning_execution_rsi.launch sim:=true

Clone this wiki locally