작성자: 박준규
2023.01.27(금)
Reference: https://answers.ros.org/question/364116/ros2-how-to-uninstallremove-a-package/
Sometimes you may want to remove a package (wrong name, etc.).
If so:
Go to your workspace root directory:
cd ~/ros2_workspace
Remove the package directory:
rm -rf src/<package_name>
Remove the build, install, and log directories:
rm -rf build/ install/ log/
Rebuild the environment:
colcon build