These packages are used in day 3 of the ROS workshops.
- Make your workspace directory and enter it
mkdir -p colcon_ws/src
cd colcon_ws/
- Acquire the source files. Clone this repository using git.
git clone https://github.com/Hyperloop-VCU/day3_ros_packages.git src/
- Install the package's dependencies
rosdep install --from-paths src --ignore-src -r -y
- Build the package using colcon
colcon build --symlink-install
- Source the install source file to tell ROS about your new packages
source install/setup.bash