ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Some things to check:
Did you build your workspace after cloning the source?
Did you source devel/setup.bash
from the workspace after building it?
2 | No.2 Revision |
Some things to check:
Did you build your workspace after cloning the source?
Did you source devel/setup.bash
from the workspace after building it?
UPDATE: this is a catkin package, you don't build it with rosmake. Instead:
$ cd ~/ros_workspace
$ catkin_make
$ source build/setup.bash
After that you can run the program.
3 | No.3 Revision |
Some things to check:
Did you build your workspace after cloning the source?
Did you source devel/setup.bash
from the workspace after building it?
UPDATE: this is a catkin package, you don't build it with rosmake. Instead:
$ cd ~/ros_workspace
$ catkin_make
$ source build/setup.bash
devel/setup.bash
After that you can run the program.