ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
You haven't specified which launch file you're trying to launch, but I looked the GitHub repo and there doesn't appear to be a turtlebot3_bringup
launch file. So, if you're trying to use the turtlebot3_robot.launch
launch file use the following command
roslaunch turtlebot3_bringup turtlebot3_robot.launch
2 | No.2 Revision |
You haven't specified which launch file you're trying to launch, but I looked the GitHub repo and there doesn't appear to be a turtlebot3_bringup
launch file. So, if you're trying to use the turtlebot3_robot.launch
launch file use the following command
roslaunch turtlebot3_bringup turtlebot3_robot.launch
The pattern for using launch files is
roslaunch <package-name> <launch-file>
and then you can use some args. See the roslaunch wiki for more information.