File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -94,20 +94,25 @@ on information how to set this up.
9494``` bash
9595# source global ros
9696$ source /opt/ros/< your_ros_version> /setup.bash
97+
9798# create a catkin workspace
9899$ mkdir -p catkin_ws/src && cd catkin_ws
99- $ catkin_make
100- $ cd src
100+
101101# clone the driver
102- $ git clone https://github.com/UniversalRobots/Universal_Robots_ROS_Driver.git
102+ $ git clone https://github.com/UniversalRobots/Universal_Robots_ROS_Driver.git src/Universal_Robots_ROS_Driver
103+
103104# clone fork of the description to use the calibration feature
104- $ git clone -b calibration_devel https://github.com/fmauch/universal_robot.git
105+ $ git clone -b calibration_devel https://github.com/fmauch/universal_robot.git src/fmauch_universal_robot
106+
105107# install dependencies
106- $ rosdep install --from-path . -y --ignore-src
107- # build the driver
108- $ cd ..
108+ $ sudo apt update -qq
109+ $ rosdep update
110+ $ rosdep install --from-path src --ignore-src -y
111+
112+ # build the workspace
109113$ catkin_make
110- # source the workspace
114+
115+ # activate the workspace (ie: source it)
111116$ source devel/setup.bash
112117```
113118
You can’t perform that action at this time.
0 commit comments