ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

Try to execute: rospack profile

It is possible that you package has not been added yet to ROS's package list, the above command will explore the packages in your workspace and build the new list.

Try to execute: rospack profile

It is possible that you package has not been added yet to ROS's package list, the above command will explore the packages in your workspace and build the new list.

After that try to launch your test again.

Try to execute: rospack profile

It is possible that you package has not been added yet to ROS's package list, the above command will explore the packages in your workspace and build the new list.

After that try to launch your test again.

Also, if the launch file that you attached is a "copy&paste" of your actual file, it will not work because there is syntax errors.

Original:

<launch>
  <node name="soundplay_node" pkg="sound_play"  type="soundplay_node.py"
  <node name="test" pkg="test' type="test"/>
<launch>

Correct:

<launch>
  <node name="soundplay_node" pkg="sound_play"  type="soundplay_node.py"/>
  <node name="test" pkg="test" type="test"/>
</launch>