Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions notes/Stage_Ros2_Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,22 @@ Installation of stage_ros2 on Ubuntu 24.04: (not tested in all configurations)
git submodule add --branch humble https://github.com/tuw-robotics/stage_ros2.git stage_ros2
```

- Install ROS 2 desktop and colcon build tools:

- ```bash
sudo apt install ros-humble-desktop python3-colcon-common-extensions
```

- skip this step if ROS 2 Humble is already installed on your system

- Source the ROS 2 environment:

- ```bash
source /opt/ros/humble/setup.bash
```

- this step is required before running any colcon commands and needs to be repeated in each new terminal session

- Make sure the python ros development tools are installed:

- ```bash
Expand Down Expand Up @@ -97,6 +113,12 @@ cd YOUR_ROS2_WORKSPACE/src
git clone --branch humble https://github.com/tuw-robotics/stage_ros2.git
cd YOUR_ROS2_WORKSPACE

# Install ROS 2 desktop and colcon build tools
sudo apt install ros-humble-desktop python3-colcon-common-extensions

# Source ROS 2 environment
source /opt/ros/humble/setup.bash

# Update the needed development packages and tools
sudo apt install python3-rosdep
sudo rosdep init
Expand Down