ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Perhaps the python node you wrote isn't executable or doesn't have the right permissions. The tutorial on subscribing and publishing explains how to make your script executable.
Change permissions of the file with
$ chmod +x ar_kinect.py
and make sure you have the line
#!/usr/bin/env python
at the top of your python file.