1.ubuntu下安装noetic

1.首先安装常规手段安装乌班图系统

2.开始ROS 系统安装

1. 设置编码

$ sudo apt update && sudo apt install locales
$ sudo locale-gen en_US en_US.UTF-8
$ sudo update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 
$ export LANG=en_US.UTF-8

2.添加源

bash 复制代码
$ sudo apt update && sudo apt install curl gnupg lsb-release 
$ sudo curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -o /usr/share/keyrings/ros-archive-keyring.gpg 
$ echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/ros-archive-keyring.gpg] http://packages.ros.org/ros2/ubuntu $(source /etc/os-release && echo $UBUNTU_CODENAME) main" | sudo tee /etc/apt/sources.list.d/ros2.list > /dev/null

如遇报错"Failed to connect to raw.githubusercontent.com ",可参考古月居 - ROS机器人知识分享社区

3. 安装ROS2

1.配置Softerware & Updates

2.添加软件源

如果不添加软件源,是无法定位软件包的

清华源

bash 复制代码
sudo sh -c '. /etc/lsb-release && echo "deb http://mirrors.tuna.tsinghua.edu.cn/ros/ubuntu/ `lsb_release -cs` main" > /etc/apt/sources.list.d/ros-latest.list'

3.设置key

bash 复制代码
sudo apt-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654

4.更新并安装

更新
bash 复制代码
sudo apt update

安装(ros-noetic-desktop-full)

安装aptitude
bash 复制代码
sudo apt install aptitude
安装ROS软件包
bash 复制代码
sudo aptitude install ros-noetic-desktop-full

5.添加环境变量

bash 复制代码
echo "source /opt/ros/noetic/setup.bash" >> ~/.bashrc
source ~/.bashrc

6.安装构建依赖

bash 复制代码
sudo apt install python3-rosdep python3-rosinstall python3-rosinstall-generator python3-wstool build-essential

初始化

bash 复制代码
sudo rosdep init
更新
bash 复制代码
rosdep update

7.测试

分别打开3个终端,在第1个终端输入:

bash 复制代码
roscore

在第2个终端输入:

bash 复制代码
rosrun turtlesim turtlesim_node

在第3个终端输入:

bash 复制代码
rosrun turtlesim turtle_teleop_key
相关推荐
枫叶红花18 分钟前
【Linux系统编程】:信号(2)——信号的产生
linux·运维·服务器
程序员大志24 分钟前
ROS1入门教程2:主题发布和订阅
ros
yaosheng_VALVE26 分钟前
探究全金属硬密封蝶阀的奥秘-耀圣控制
运维·eclipse·自动化·pyqt·1024程序员节
_微风轻起28 分钟前
linux下网络编程socket&select&epoll的底层实现原理
linux·网络
dami_king33 分钟前
SSH特性|组成|SSH是什么?
运维·ssh·1024程序员节
启明真纳38 分钟前
elasticache备份
运维·elasticsearch·云原生·kubernetes
苹果醋342 分钟前
SpringBoot快速入门
java·运维·spring boot·mysql·nginx
WANGWUSAN661 小时前
Python高频写法总结!
java·linux·开发语言·数据库·经验分享·python·编程
TsengOnce2 小时前
Docker 安装 禅道-21.2版本-外部数据库模式
运维·docker·容器
永卿0012 小时前
nginx学习总结(不包含安装过程)
运维·nginx·负载均衡