Skip to content

Instantly share code, notes, and snippets.

@ammarnajjar
Created June 2, 2016 16:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ammarnajjar/19fa5fc3635b695b53b04c6a3ec73ac3 to your computer and use it in GitHub Desktop.
Save ammarnajjar/19fa5fc3635b695b53b04c6a3ec73ac3 to your computer and use it in GitHub Desktop.
Moveit installation instructions tested on ubuntu 14.04
#!/bin/bash
# full documentation: http://moveit.ros.org/install/
# OS: ubuntu 14.04
sudo apt-get update && sudo apt-get install -y python-wstool
mkdir -p $HOME/moveit/src
cd $HOME/moveit/src
echo ">> Current directory: $(pwd)"
wstool init .
wstool merge https://raw.github.com/ros-planning/moveit_docs/indigo-devel/moveit.rosinstall
wstool update
cd ..
echo ">> Current directory: $(pwd)"
rosdep install --from-paths src --ignore-src --rosdistro indigo -y
# build
source /opt/ros/indigo/setup.bash
catkin_make | tee catkin_make.log
echo "source $HOME/moveit/devel/setup.bash" >> $HOME/.bashrc
source $HOME/moveit/devel/setup.bash
# vim: set ft=sh ts=4 sw=4 noet ai :
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment