Ubuntu 14.04 install ROS Indigo

前端之家收集整理的这篇文章主要介绍了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

原文链接:https://www.f2er.com/ubuntu/355975.html

猜你在找的Ubuntu相关文章