-
Notifications
You must be signed in to change notification settings - Fork 6
Getting Started
Daeun Song edited this page May 23, 2023
·
52 revisions
Unbuntu 18.04 with ROS melodic, RT kernel version 5.2.21
- Install Ubuntu and install real-time kernel.
- Install ROS following instructions provided here.
- Install moveit following instructions provided here.
- Create a catkin workspace and clone this repository
mkdir -p robot_ws/src && cd robot_ws
git clone https://github.com/yaesolKim/robotiq.git src/robotiq
git clone https://github.com/EwhaGlab/dual_ur_robotiq.git src/dual_ur_robotiq
git clone https://github.com/yaesolKim/Universal_Robots_ROS_Driver.git src/Universal_Robots_ROS_Driver
- Install the dependencies
sudo apt update -qq
rosdep update
rosdep install --from-paths src --ignore-src -y
- Build the workspace
catkin_make
- Activate the workspace (ie: source it)
source devel/setup.bash