This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
cs:ros:installation:start [2016/09/02 18:14] Brandon Kallaher |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Installation====== | ||
- | The install scripts already install ROS for you, these instructions are if you wish to manually install ROS. | ||
- | |||
- | For Ubuntu 14.04, you can just follow the normal [[ros>indigo/Installation/Ubuntu|ROS installation instructions]]. | ||
- | |||
- | For Linux Mint 17.x, the instructions are mostly the same, here are the steps (derived from http://insane-on-linux.blogspot.com/2014/10/installing-ros-indigo-on-mint-17.html): | ||
- | <code> | ||
- | sudo sh -c '. /etc/lsb-release && echo "deb http://mirror.umd.edu/packages.ros.org/ros/ubuntu trusty main" > /etc/apt/sources.list.d/ros-latest.list' | ||
- | wget https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -O - | sudo apt-key add - | ||
- | sudo aptitude update | ||
- | sudo aptitude install ros-indigo-ros-base | ||
- | </code> | ||
- | |||
- | |||
- | |||