ROS Installation
Attention
We are moving to ROS2. This guide and the following pages are still in the process of being updated. There might be some construction works still going on here and there.
Note
This guide assumes Ubuntu 24.04 is used as OS.
We use ROS2 Jazzy. The following installations steps work for a Ubuntu 24.04 amd64 version and for the Ubuntu 24.04 arm64 server image for the Raspberry Pi.
Preparation
Make sure you have a UTF-8 supported locale with
$ locale
If not, refer to the ROS documentation.
Enable universe repository
$ sudo apt install software-properties-common \ && sudo add-apt-repository universe
Add the key
$ sudo apt update && sudo apt install curl -y \ && sudo curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -o /usr/share/keyrings/ros-archive-keyring.gpg
Add sources
$ echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/ros-archive-keyring.gpg] http://packages.ros.org/ros2/ubuntu $(. /etc/os-release && echo $UBUNTU_CODENAME) main" | sudo tee /etc/apt/sources.list.d/ros2.list > /dev/null
Update
Warning
This is critial!
$ sudo apt update && sudo apt upgrade -y
Installation
Choose the installation option depending on your needs, e.g. use a more lightweight installation for Raspberry Pis.
Install ROS
sudo apt install ros-jazzy-desktop-full
sudo apt install ros-jazzy-perception
Install development tools
$ sudo apt install ros-dev-tools python3-pip
rosdep Initialization
$ sudo rosdep init && rosdep update
Note
Do not execute rosdep update
with root privileges. This would lead to permission issues.
Source the ROS Setup
$ echo 'source /opt/ros/jazzy/setup.zsh' >> ~/.zshrc \
&& . ~/.zshrc
A Brief Test (Optional)
To check whether ROS2 installation is working:
$ ros2 run turtlesim turtlesim_node