ROS Jade : Configuration
28 Aug 2015 #ros #ubuntu #roboticsConfiguring ROS
If you have not installed ROS, I have written a short guide describing the process. It can be found here found here
The first step is to check whether the environment variables for ROS are setup properly Do a
tasdik@Acer:~$ export | grep ROSLook for ROS_ROOT and ROS_PACKAGE_PATH whether they are set.
It should look something like this
tasdik@Acer:~$ source /opt/ros/<distro>/setup.bashtasdik@Acer:~$ mkdir -p ~/catkin_ws/src
tasdik@Acer:~$ cd ~/catkin_ws/src
tasdik@Acer:~$ catkin_init_workspacetasdik@Acer:~$ catkin_make
tasdik@Acer:~$ cd ~/catkin_ws/tasdik@Acer:~/catkin_ws$ source devel/setup.bashtasdik@Acer:~/catkin_ws$ echo $ROS_PACKAGE_PATH
/opt/ros/jade/share:/opt/ros/jade/stacks
tasdik@Acer:~/catkin_ws$