Ubuntu20.04安装ROS1

1. 更换清华源

输入下面的命令

shell 复制代码
sudo apt update

# 将 sources.list 拷贝到桌面
cp /etc/apt/sources.list ~/Desktop 

# 打开 sources.list 进行编辑
sudo gedit /etc/apt/sources.list

打开文件后,将里面的所有内容替换为之前网页内文本框里的内容,例如

http 复制代码
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse

# 预发布软件源,不建议启用
# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-proposed main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-proposed main restricted universe multiverse

2. 添加安装ROS的软件源

dart 复制代码
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.添加密钥

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

4.更新软件源

sql 复制代码
sudo apt update

5. 安装ROS

sql 复制代码
sudo apt install ros-noetic-desktop-full
text 复制代码
sudo apt install python3-pip
text 复制代码
sudo pip3 install rosdepc
csharp 复制代码
sudo rosdepc init

rosdepc update

6. 设置环境变量

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

source ~/.bashrc

7. 安装rosinstall

cobol 复制代码
sudo apt install python3-rosinstall python3-rosinstall-generator python3-wstool

8. 测试roscore

undefined 复制代码
roscore

出现下面这样的就是正确的

打开第二个终端窗口,输入:

shell 复制代码
rosrun turtlesim turtlesim_node

小海龟测试成功

参考如下:
【ROS】在 Ubuntu 20.04 安装 ROS 的详细教程
ROS1 基础与常用命令

相关推荐
小熙智菏——Sunspot19 分钟前
Linux系统性能优化技巧
linux·运维·性能优化
极客代码1 小时前
【Linux】内核驱动模块
linux·内核·内核模块·unix·驱动
EEE1even1 小时前
Linux服务器驱动安装
linux·运维·服务器
钰爱&1 小时前
【操作系统】Linux之网络编程(TCP)(头歌作业)
linux·网络·tcp/ip
xiaozhiwise2 小时前
Linux syscall
linux
我们的五年2 小时前
【MySQL课程学习】:MySQL安装,MySQL如何登录和退出?MySQL的简单配置
linux·服务器·数据库·学习·mysql·adb
行码棋2 小时前
Linux无sudo权限将zsh作为默认shell
linux·服务器
猫猫不是喵喵.3 小时前
【Linux】Linux入门实操——rpm与yum
linux·运维·服务器
yyycqupt3 小时前
数据库连接池(二)
linux·数据库·c++·后端·单例模式