View on GitHub

Rosworkshop

HOME

Welocme to introdution to ROS

I hope all have installed Vritual box and and installed the ROSworkshop image which contain ROS open termial with shortcut

Ctrl+Alt+t

Let’s make our first ROS workspace

mkdir -p ROS_workspace/src

the above will create a ROS work workspace ROS_workspace repalce it with a name you are comfortable with names like below

For this workshop the Drirectory name is ROSworksop

Now move to directory of ROSworksop and then to src folder using terminal commands this can be done in two methods


Creating a package

make sure you are in src

catkin_create_pkg package_name <depend1> <depend2> <...> etc

example

catkin_create_pkg ros_basics roscpp rospy std_msgs

go back to directory of ROSworksop from src folder

cd ..

Now final commands

Next to:Chapter 2