Ubuntu 14.04 install ROS Indigo

1. Configure your Ubuntu repositories

To enable all Ubuntu software (main universe restricted multiverse) repositories use

sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe restricted multiverse"

Then update the package list

sudo apt-get update

2. Setup your sources.list

sudo sh -c '. /etc/lsb-release && echo "deb http://mirrors.ustc.edu.cn/ros/ubuntu/ $disTRIB_CODENAME main" > /etc/apt/sources.list.d/ros-latest.list'

设置成国内中科大的源.

3. Set up your keys

sudo apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net --recv-key 0xB01FA116

4. Installation

sudo apt-get updatesudo apt-get install ros-indigo-desktop-full

5. Initialize rosdep

sudo rosdep initrosdep update

6. Environment setup

echo "source /opt/ros/indigo/setup.bash" >> ~/.bashrcsource ~/.bashrc

7. Getting rosinstall

sudo apt-get install python-rosinstall

Reference

Ubuntu install of ROS Kinetic

相关文章

ubuntu退出redis的示例:指定配置文件方式启动源码redis:roo...
ubuntu中mysql改密码忘了的解决方法:1.在终端中切换到root权...
ubuntu安装mysql失败的解决方法原因:可能是原有的MySQL还有...
使用centos和ubuntu建站的区别有以下几点1.CentOS是Linux发行...
ubuntu图形界面和字符界面切换的方法:可以通过快捷键CTRL+A...
ubuntu中重启mysql失败的解决方法1.首先,在ubuntu命令行中,...