Run the following command in a Terminal.
sudo apt install python3-colcon-common-extensions
gedit ~/.bashrc
In this file, append the following line.
source /usr/share/colcon_argcomplete/hook/colcon-argcomplete.bash
cd
mkdir ros2_ws
cd ros2_ws/
mkdir src
All the packages that we create, will be inside the “src” or the source folder of that Workspace.
Now, as in the ros2 workspace directory
colcon build
You will see that we have a successfully build! Of course, we have 0 packages, as we have not put anything in the src directory.
Now, if we check what’s inside now (by ls
) we will find three folders created inside the workspace root.
--symlink-install
option, creates a symlink
to their original locations (in src or build), instead of copying. This way, we
save space and can modify certain configuration files directly in src
.