Installation
Platforms
ROS 2: Humble Hawksbill
OS: - Ubuntu 22.04 Jammy Jellyfish - Ubuntu Mate 22.04 (On real robot (e.g: Raspberry Pi 4B))
Install the binaries
The packages have been also released via ROS package manager system for the ‘humble’ distro. You can check them here.
These packages can be installed using apt (e.g: sudo apt install ros-humble-andino-description) or using rosdep.
Build from Source
Dependencies
colcon workspace
Packages here provided are colcon packages. As such a colcon workspace is expected:
Create colcon workspace:
mkdir -p ~/ws/src
Clone this repository in the
srcfolder:cd ~/ws/src git clone https://github.com/Ekumen-OS/andino.git
Install dependencies via
rosdep:cd ~/ws rosdep install --from-paths src --ignore-src -i -y
Build the packages:
colcon buildFinally, source the built packages If using
bash:source install/setup.bash
Note: Whether you are installing the packages in your dev machine or in your robot the procedure is the same.