ROS Melodic安装教程

本文涉及的产品
资源编排,不限时长
简介: ROS Melodic安装教程

在Ubuntu18.04上安装ROS Melodic

一、换源

换成国内源

二、安装Melodic

中科大源

  1. 配置ROS软件源()
sudo sh -c 'echo "deb https://mirrors.ustc.edu.cn/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'
  1. 配置密钥
sudo apt-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654
  1. 更新软件源
sudo apt update
  1. 安装Melodic
sudo apt install ros-melodic-desktop-full
  1. 初始化rosdep
sudo rosdep init
rosdep update

若出现问题,则输入

sudo apt-get -y install python-rosdep

再重新初始化rosdep

若rosdep update超时,有两种方法,文章底部为第二种方法,这里是第一种方法

sudo gedit /etc/resolv.conf

注释掉原有的nameserver,添加

nameserver 8.8.4.4
nameserver 8.8.8.8
  1. 用户环境设置
echo "source /opt/ros/melodic/setup.bash" >> ~/.bashrc
source ~/.bashrc
  1. 安装包编译依赖
sudo apt install python-rosinstall python-rosinstall-generator python-wstool build-essential
  1. 验证安装
rosversion -d

终端显示melodic即为安装成功

sudo apt-get update密钥报错

curl -s https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | sudo apt-key add -

解决rosdep update慢的问题

把所有的h1c换成自己的用户名!

将rosdistro clone到/home

git clone git@gitee.com:c1h2/rosdistro.git
# 或使用以下两个任意一个:
# git clone https://github.com/ros/rosdistro.git
# git clone https://gitee.com/c1h2/rosdistro.git
cd /home/h1c/rosdistro/rosdep/sources.list.d/

20-default.list的所有内容替换为

# os-specific listings first
yaml file:///home/h1c/rosdistro/rosdep/osx-homebrew.yaml osx

# generic
yaml file:///home/h1c/rosdistro/rosdep/base.yaml
yaml file:///home/h1c/rosdistro/rosdep/python.yaml
yaml file:///home/h1c/rosdistro/rosdep/ruby.yaml
gbpdistro file:///home/h1c/rosdistro/releases/fuerte.yaml fuerte

# newer distributions (Groovy, Hydro, ...) must not be listed anymore, they are being fetched from the rosdistro index.yaml instead

第二个文件

cd /usr/lib/python2.7/dist-packages/rosdep2/
sudo gedit gbpdistro_support.py
FUERTE_GBPDISTRO_URL = 'file:///home/h1c/rosdistro/' \
    'releases/fuerte.yaml'

第三个文件

cd /usr/lib/python2.7/dist-packages/rosdep2/
sudo gedit rep3.py
REP3_TARGETS_URL = 'file:///home/h1c/rosdistro/releases/targets.yaml'

第四个文件

cd /usr/lib/python2.7/dist-packages/rosdistro/
sudo gedit __init__.py
DEFAULT_INDEX_URL = 'file:///home/h1c/rosdistro/index-v4.yaml'
cd /etc/ros/rosdep/sources.list.d
sudo gedit 20-default.list

将以下的内容复制进20-default.list中

#os-specific listings first
yaml file:///home/h1c/rosdistro/rosdep/osx-homebrew.yaml osx
#generic
yaml file:///home/h1c/rosdistro/rosdep/base.yaml
yaml file:///home/h1c/rosdistro/rosdep/python.yaml
yaml file:///home/h1c/rosdistro/rosdep/ruby.yaml
gbpdistro file:///home/h1c/rosdistro/releases/fuerte.yaml fuerte

#newer distributions (Groovy, Hydro, ...) must not be listed anymore, they are being fetched from the rosdistro index.yaml instead

最后rosdep update

相关实践学习
使用ROS创建VPC和VSwitch
本场景主要介绍如何利用阿里云资源编排服务,定义资源编排模板,实现自动化创建阿里云专有网络和交换机。
阿里云资源编排ROS使用教程
资源编排(Resource Orchestration)是一种简单易用的云计算资源管理和自动化运维服务。用户通过模板描述多个云计算资源的依赖关系、配置等,并自动完成所有资源的创建和配置,以达到自动化部署、运维等目的。编排模板同时也是一种标准化的资源和应用交付方式,并且可以随时编辑修改,使基础设施即代码(Infrastructure as Code)成为可能。 产品详情:https://www.aliyun.com/product/ros/
目录
相关文章
|
Python
Ubuntu18.04 ROS Melodic安装和卸载
Ubuntu18.04 ROS Melodic安装和卸载简单过程
293 0
|
存储 IDE Ubuntu
【基于ROS Melodic环境安装rosserial arduino】
【基于ROS Melodic环境安装rosserial arduino】
213 0
|
Ubuntu Python
ROS Melodic Arbotix报错
ROS Melodic Arbotix报错
|
IDE Ubuntu 机器人
Ubuntu 18.04 配置Ros melodic
Ubuntu 18.04 配置Ros melodic
ros/melodic/include/sensor_msgs中激光雷达的数据结构
ros/melodic/include/sensor_msgs中激光雷达的数据结构
99 0
【1. ubuntu18.04安装ROS Melodic】
【1. ubuntu18.04安装ROS Melodic】
313 0
|
Ubuntu Linux
Ubuntu 18.04.05 LTS配置ROS Melodic各种问题详细解决(填坑)
Ubuntu 18.04.05 LTS配置ROS Melodic各种问题详细解决(填坑)
287 0
Ubuntu 18.04.05 LTS配置ROS Melodic各种问题详细解决(填坑)
解决安装 ROS Melodic 后终端出现NameError: name ‘reload‘ is not defined的问题
解决安装 ROS Melodic 后终端出现NameError: name ‘reload‘ is not defined的问题
148 0
|
存储 传感器 编解码
ROS Melodic中costmap2D详解(下)
ROS Melodic中costmap2D详解(下)
1178 0
ROS Melodic中costmap2D详解(下)
|
传感器 存储 数据可视化
ROS Melodic中costmap2D详解(上)
ROS Melodic中costmap2D详解(上)
1074 0
ROS Melodic中costmap2D详解(上)

推荐镜像

更多