-
Notifications
You must be signed in to change notification settings - Fork 92
Installation on Ubuntu
Margarita Grinvald edited this page May 23, 2019
·
29 revisions
Install ROS following the instructions at the ROS installation page. The full install (ros-kinetic-desktop-full, ros-melodic-desktop-full) are recommended.
Make sure to source your ROS setup.bash script by following the instructions on the ROS installation page.
If you don't have a catkin workspace yet, create a new one:
mkdir -p ~/catkin_ws/src
cd ~/catkin_ws
catkin init
catkin config --extend /opt/ros/kinetic --merge-devel --cmake-args -DCMAKE_CXX_STANDARD=14 -DCMAKE_BUILD_TYPE=Release
wstool init srcClone the voxblox_plusplus repository with relative submodules and fetch dependencies:
cd ~/catkin_ws/src
git clone --recurse-submodules [email protected]:ethz-asl/voxblox_gsm.git
wstool merge -t . voxblox_gsm/dependencies.rosinstall
wstool updateBuild the voxblox++ packages:
catkin build gsm_node