2024-12-08 01:17:10 +00:00
|
|
|
# Installing Tools
|
|
|
|
## Installing VSCode
|
|
|
|
first install vscode using snap
|
|
|
|
```bash
|
|
|
|
sudo snap install code --classic
|
|
|
|
```
|
|
|
|
then add the `ROS` extension from Microsoft.
|
|
|
|
|
|
|
|
## Installing Colcon
|
2024-11-27 01:37:59 +00:00
|
|
|
To install colcon first run the sudo apt install command.
|
|
|
|
``` bash
|
|
|
|
sudo apt install python3-colcon-common-extensions
|
|
|
|
```
|
|
|
|
|
|
|
|
then add the colcon autocomplete to the `.bashrc` file.
|
|
|
|
``` bash
|
|
|
|
echo 'source /usr/share/colcon_argcomplete/hook/colcon-argcomplete.bash' >> ~/.bashrc
|
2024-12-08 01:17:10 +00:00
|
|
|
```
|
|
|
|
|