ROS2 workspace clean
What is the equivalent to catkin clean for ROS2 and colcon?
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
What is the equivalent to catkin clean for ROS2 and colcon?
rm -r build install
In addition to build and install, I would also clean the log directory
rm -r build install log
By installing the new colcon-clean extension, you can clean the build, install and log base paths like so:
sudo apt install python3-colcon-clean
colcon clean workspace
See the extension's repo readme for more documentation:
What is your configuration? I'm using Ubuntu 20.04 ROS2 foxy and it's not available; Unable to locate package python3-colcon-clean.
Asked: 2019-08-06 12:31:57 -0600
Seen: 27,225 times
Last updated: Dec 15 '22
Is there a release date of ros 2 or more informations about it?
Is the planned ROS1 to ROS2/DDS bridge available yet?
ROS2: content-based topic subscriptions?
Building Ros 2.0 without OpenCV?
ros2 rttest example build error
ROS 2 Alpha 2 ros1_bridge using DDS between two computers
There isn't one (yet) see ticket: https://github.com/colcon/colcon-core... You're best off scripting the removal of those directories for now.
Happy to say, there is one now: https://github.com/colcon/colcon-core...