ubuntu 18.04安装ros步骤
时间: 2023-10-11 12:11:09 浏览: 87
ubuntu 18.04下 ROS部署安装全流程教程
5星 · 资源好评率100%
安装ROS的步骤如下:
1. 打开终端,使用sudo apt-get update更新软件包;
2. 使用sudo apt-get install ros-melodic-desktop-full安装ROS;
3. 使用sudo rosdep init初始化rosdep;
4. 使用rosdep update更新rosdep;
5. 使用sudo apt-get install python-rosinstall python-rosinstall-generator python-wstool build-essential安装必要的依赖;
6. 使用echo "source /opt/ros/melodic/setup.bash" >> ~/.bashrc将ROS添加到bash文件;
7. 使用source ~/.bashrc激活环境变量;
8. 使用roscore启动ROS系统。
阅读全文