One impairment to ROS 2 adoption is that all of the commands that have worked their way into muscle memory for ROS 1 developers no longer work. Also, all of the commands in ROS 2 tend to be at least two characters longer. To get information about a topic in ROS 1, one could type rosto<tab> (5 characters before tab), but in ROS 2 the equivalent is ros2 to<tab> (7 characters before tab).
On top of the differences between the ROS 1 and ROS 2 command line tools, there is also a wide gulf between the different build tools that are available. For example, if you want to build a specific package (e.g. pr2_moveit_config) and all its dependencies, there are three possible commands, depending on the build tool.
| build tool | command |
|---|---|
catkin_make |
catkin_make --only-pkg-with-deps pr2_moveit_config |
catkin_tools |
catkin build pr2_moveit_config |
colcon |
colcon build --packages-up-to pr2_moveit_config |
The ros_command package provides a set of command line interfaces for common actions with syntax similar to ROS 1 and catkin_tools, since those are often simpler, shorter and more familiar to a majority of ROS developers [citation needed].
This tool uses Python 3.
sudo pip3 install ros-command
It also uses some BASH scripts. It is recommended that you add source $(get_ros_command_bash) to your .bashrc. This will enable the bash-only commands (roscd and source_ros) and enable tab completion of the other commands.
echo "source \$(get_ros_command_bash)" >> ~/.bashrc
Note that if you are using ROS 1, by default the native ROS commands will take precedence over the ros_command versions. You can test this by running which rosmsg. If it returns /opt/ros/$ROS_DISTRO/bin/rosmsg then it is the native version. If it returns /usr/local/bin/rosmsg then it is the ros_command version. This is likely because /opt/ros/$ROS_DISTRO/bin comes earlier in the $PATH than /usr/local/bin. You can fix this by changing your $PATH, i.e.
export PATH=/usr/local/bin:$PATH
However, this may have additional consequences and should be done carefully.
(If you don't do this for ROS 1, then the commands that do not share a name with native ROS commands (i.e. rosbuild) will still work fine.)
This command was not implemented in ROS 2. There is the somewhat similar colcon_cd command, but it requires additional installation. Instead, this package has implemented a version of roscd that works with ROS 2. Because you cannot change the shell's working directory from within a Python script, roscd is implemented in bash, depending on the Python script get_ros_directory.
rosbuild functions as a convenient wrapper for catkin_make, catkin_tools and colcon. (Apologies to all the people still using rosbuild in its original form, but its been deprecated since 2013.) Running rosbuild will automatically determine your current workspace root folder and which build tool it uses, and then running the equivalent native build command. For example running rosbuild pr2_moveit_config will run the three commands shown in the table in the introduction.
- Like
catkin build, it can be run from anywhere within the workspace directory structure. - Can play notification sounds when complete (see Configuration section below)
- Displays the build status in a fancy blessed-based terminal-focused graphical user interface (although not for
catkin_make).
rosbuild.mp4
- Other arguments not specified in the table below are passed into the raw build command.
| Category | rosbuild | colcon | catkin_tools | catkin_make |
|---|---|---|---|---|
| General | -c, --continue_on_failure | --continue-on-error | --continue-on-failure | β |
| -j N --jobs N | --parallel-workers N | --jobs N | --jobs N | |
| -b, --cmake_build_type X | --cmake_args -DCMAKE_BUILD_TYPE=X | --cmake_args -DCMAKE_BUILD_TYPE=X | -DCMAKE_BUILD_TYPE=X | |
| Package Selection | --this | --packages-up-to pkg_name | --this | --pkg pkg_name |
| --this --no-deps | --packages-select pkg_name | --this --no-deps | --only-pkg-with-deps | |
| -s --skip_packages pkg_name | --packages-skip pkg_name | π² | -DCATKIN_BLACKLIST_PACKAGES="pkg_name" | |
| pkg_name | --packages-up-to pkg_name | pkg_name | --pkg pkg_name |
- β There is no equivalent to
--continue-on-failurewithcatkin_make(and it is probably not possible) - π² There is no equivalent to
--skip_packagesincatkin_tools, although you could theoretically do it by parsing the dependency tree - If
cmake_build_typeis NOT specified, then it defaults to the value in the Configuration. The command line argument does overwrite the configured one.
One useful arcane command that pops up in many places/aliases (in both ROS 1 and ROS 2) is
rosdep install --ignore-src -y -r --from-paths .
According to the manual , rosdep install will "download and install the dependencies of a given package or packages".
--from-paths .specifies that dependencies should be installed for all packages in the current directory--ignore-srcwill ignore packages that you have the source code checked out-ymakes it non-interactive (so it defaults to installing everything without prompting)-rcontinues when you get errors
Essentially, this is a command for installing all of the upstream dependencies for the packages in your workspace.
Now there's the new simple command rosdep_install which will do the same thing. A version with a terminal GUI similar to rosbuild is in development.
In ROS 2, rosmsg and rossrv were replaced by ros2 interface, which can also handle actions. For most commands, calling the ros_command version of rosmsg and rossrv will just call either the ROS 1 rosmsg/rossrv command or the equivalent ros2 interface command.
- The basic
showcommand now has syntax highlighting.
- The
showcommand now has a-roption to recurse through the interface definitions.
rosaction <command>-rosactiondoes not exist in ROS 1, so it is implemented here, often callingrosmsg <command>on the constituent parts (i.e. Goal/Result/Feedback).
ros<msg|srv|action> showwithout namespaces - The equivalent command to ROS 1'srosmsg show Pointisros2 interface show geometry_msgs/msg/Point. This is cumbersome for a number of reasons. First, ROS 1 is nearly half has short (17 chars vs 43 chars). It also requires you remember what package the message you are looking for is. The version implemented here will search for matching fully qualified names, and then print the fully qualified name and the contents of the interface definition.rosmsg protoalso works without namespaces IF there's only one type that matches.
If you use a single ROS workspace, then you probably source the appropriate setup.bash from the .bashrc file. However, if you use multiple, you can source the appropriate setup.bash with one simple command: source_ros. This will find the appropriate setup.bash by determining the current ROS Workspace based on the folder the script is executed in. Typically, this will either source the devel/setup.bash or install/setup.bash depending on whether it is ROS 1 or 2. (You can also have a setup.bash in the workspace root if you need custom logic to source additional environment variables.)
(Under the hood, this runs the get_current_setup_bash script to print the appropriate filename)
In ROS 1, rosrun works the same way as the standard ROS 1 version. In ROS 2, it runs ros2 run.
rosdebug does the same things, except it will insert --prefix 'gdb -ex run --args' into the appropriate place to run your node using gdb.
Similar to rosrun, roslaunch here either just runs ROS 1's roslaunch or ROS 2's ros2 launch.
rosexecute merges the rosrun and roslaunch command (convenient if you can't remember if a particular functionality was a launch file or executable). When you run a command of the form rosexecute PKG_NAME ABC, if there is an executable with the name ABC, that is rosrun, otherwise it is roslaunched.
The rosclean command works as a hybrid of rosclean and catkin clean.
- With no arguments (
rosclean) the script will ask whether you want to delete the workspace'sdevel/install/build/logdirectories as well as the global~/.ros/logdirectory while also printing their sizes. - With the
-yflag (rosclean -y) it will not prompt you and just delete things! - To just print the sizes without deleting anything, you can run
rosclean checkorrosclean -c. - You can also avoid the computation of folder sizes with the
-nflag. - You can also provide a list of packages (
rosclean std_msgs nav2_core) and it will attempt to delete just those portions of the workspace.
You can also throw the word purge at the beginning just to mirror the ROS 1 rosclean more closely.
The commands for rostopic are strikingly similar for ROS 1 and ROS 2, but are provided here as a convenience.
Users may change the default behavior of ros_command by putting settings in yaml files in two places.
ros_command.yamlin the workspace root (highest precedence)~/.ros/ros_command.yaml
The current settings you may change are summarized in this table.
| key | type | default | note |
|---|---|---|---|
| cmake_build_type | string | Release | CMAKE_BUILD_TYPE |
| graphic_build | boolean | True | By default, rosbuild shows a fancy graphical interface |
| success_sound | string / absolute path | None | Sound file path to play after successful builds |
| fail_sound | string / absolute path | None | Sound file path to play after unsuccessful builds |
| extra_cmake_args | list of strings | [] | Args added to --cmake-args in build command |
| extra_build_args | list of strings | [] | List of tokens added to the end of the build command |
| tab_complete_timeout | string | 4h | Time to cache the tab completions. Examples: 1h, 2m30s |
If you like really short, convenient commands, try adding these to your ~/.bashrc
alias sros='source_ros' # Easier tab completion than source_ros
alias asdf='rosbuild --this -c' # Builds the package in the current directory (and its dependencies)
alias zxcv='rosbuild --this --no-deps' # Builds just the package in the current directory
ros_command's core functionality was implemented at PickNik Robotics.- The implementation of
roscdwas originally developed by Vatan Aksoy Tezer
