Skip to content

Instantly share code, notes, and snippets.

@nuclearmistake
Last active May 31, 2016 17:22
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Ubuntu 14.10 ROS Indigo installation
These instructions are adapted from answers to http://answers.ros.org/question/196076/building-indigo-on-1410/
1. begin a source install as instructed @ http://wiki.ros.org/indigo/Installation/Source
2. before rosdep install:
http://gazebosim.org/download - choose .deb, and install it
sudo add-apt-repository ppa:v-launchpad-jochen-sprickerhof-de/pcl
sudo apt-get update
echo | sudo tee /etc/ros/rosdep/local.xml <<EOF
gazebo:
ubuntu: [gazebo5, libgazebo5-dev]
libpcl-all:
ubuntu: [libpcl1]
libpcl-all-dev:
ubuntu: [libpcl-dev]
EOF
echo "yaml file:///etc/ros/rosdep/local.yaml" | sudo tee /etc/ros/rosdep/sources.list.d/10-local.list
rosdep update
3. rosdep install as instructed
4. before step catkin_make_isolated:
edit src/stage_ros/CMakeLists.txt as follows:
add "-lm -ldl" to the end of the line that starts with "target_link_libraries(stageros", inside the close parenthesis
5. continue with step 2.1.3
6. get yourself a coffee or three
@trainman419
Copy link

Should echo | sudo tee /etc/ros/rosdep/local.xml <<EOF be echo | sudo tee /etc/ros/rosdep/local.yaml <<EOF ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment