- ROS 1 + catkin workspace (commonly Melodic/Noetic)
- Typical ROS deps:
rospy,std_msgs,geometry_msgs,sensor_msgs, etc.
(Exact dependencies are declared inpackage.xml.)
If you’re working with the Robotnik RB-KAIROS stack, you’ll usually also have the relevant RB-KAIROS packages and robot bringup in your workspace.
- Create/enter a catkin workspace:
mkdir -p ~/catkin_ws/src
cd ~/catkin_ws/src- Clone the repo:
git clone https://github.com/etfrobotics/rbkairos_etf_services.git- Install dependencies & build:
cd ~/catkin_ws
rosdep install --from-paths src --ignore-src -r -y
catkin_make
source devel/setup.bash