From c1e67118b783e6d03d6060b41afdbb8964a620fc Mon Sep 17 00:00:00 2001 From: Wiktor Bajor Date: Sun, 7 Jul 2024 11:06:41 +0000 Subject: [PATCH] Update readme --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index bbf4b80..338317f 100644 --- a/README.md +++ b/README.md @@ -53,3 +53,24 @@ And to trigger grasp_service just call: ```bash ros2 service call grasp_service std_srvs/srv/Empty ``` + +# Setup +You can clone it and run in docker devcontainer or use native setup. Docker container is setup with all dependencies. + +To setup with docker devcontainer: + +```bash +./build.sh && +source install/setup.bash +``` + +To setup it without docker: + +```bash +mkdir -p ~/ros_ws/ && cd ~/ros_ws/src +git clone https://github.com/Wiktor-99/ros2_grasp_service.git +cd .. +rosdep install --from-paths src --ignore-src -r -y +./build.sh +. install/setup.bash +```