设置语言环境

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

安装源

sudo apt update && sudo apt install curl gnupg2 lsb-release
curl -s https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | sudo apt-key add -

 

sudo sh -c 'echo "deb [arch=$(dpkg --print-architecture)] http://packages.ros.org/ros2/ubuntu $(lsb_release -cs) main" > /etc/apt/sources.list.d/ros2-latest.list'

安装ROS2软件包

sudo apt update

 

sudo apt install ros-dashing-desktop

  

sudo apt install ros-dashing-ros-base

环境设置

source /opt/ros/dashing/setup.bash

安装argcomplete

sudo apt install python3-argcomplete

  

 安装Turtlebot3 软件包

sudo apt install python3-argcomplete python3-colcon-common-extensions libboost-system-dev build-essential
mkdir -p ~/turtlebot3_ws/src && cd ~/turtlebot3_ws/src
git clone -b ros2 https://github.com/ROBOTIS-GIT/hls_lfcd_lds_driver.git
git clone -b ros2 https://github.com/ROBOTIS-GIT/turtlebot3_msgs.git
git clone -b ros2 https://github.com/ROBOTIS-GIT/turtlebot3.git
git clone -b ros2 https://github.com/ROBOTIS-GIT/DynamixelSDK.git
cd ~/turtlebot3_ws/src/turtlebot3
rm -r turtlebot3_cartographer turtlebot3_navigation2
cd ~/turtlebot3_ws/
echo 'source /opt/ros/dashing/setup.bash' >> ~/.bashrc
source ~/.bashrc
colcon build --symlink-install --parallel-workers 1

域ID分配

echo 'source ~/turtlebot3_ws/install/setup.bash' >> ~/.bashrc
echo 'export ROS_DOMAIN_ID=30 #TURTLEBOT3' >> ~/.bashrc
source ~/.bashrc 

参考

https://index.ros.org/doc/ros2/Installation/Dashing/Linux-Install-Debians/

https://index.ros.org/doc/ros2/Installation/Dashing/Linux-Development-Setup/

 

相关文章:

  • 2021-12-22
  • 2022-01-10
  • 2021-10-30
  • 2022-12-23
  • 2021-09-10
  • 2021-11-06
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-02-24
  • 2021-08-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-03-05
相关资源
相似解决方案