Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 강화학습
- 터틀심
- RTK
- WSL2
- Jetson
- 자율탐사
- SLAM
- 자율주행
- 로봇
- WSL
- Visual SLAM
- 아두이노
- Simulation
- U-blox
- 젯슨
- turtlebot3
- GUI
- GPS
- Puck LITE
- Gazebo
- 인공지능
- ROS2
- ROS
- C++
- turtlesim
- ubuntu
- 오블완
- QT
- 티스토리챌린지
- ZED2
Archives
- Today
- Total
직관적인느낌
WSL2 + ROS2 [Simulation_turtlebot3 - Gazebo] 본문
728x90
반응형
Simulation_turtlebot3 - Gazebo
Install ROS on PC
wget <https://raw.githubusercontent.com/ROBOTIS-GIT/robotis_tools/master/install_ros2_foxy.sh>
sudo chmod 755 ./install_ros2_foxy.sh
bash ./install_ros2_foxy.sh
Install Dependent ROS 2 Packages
sudo apt-get install ros-foxy-gazebo-*
sudo apt install ros-foxy-cartographer
sudo apt install ros-foxy-cartographer-ros
sudo apt install ros-foxy-navigation2
sudo apt install ros-foxy-nav2-bringup
Install TurtleBot3 Packages
source ~/.bashrc
sudo apt install ros-foxy-turtlebot3-msgs
sudo apt install ros-foxy-turtlebot3
Environment Configuration
echo 'export ROS_DOMAIN_ID=30 #TURTLEBOT3' >> ~/.bashrc
source ~/.bashrc
Install Simulation Package
cd ~/turtlebot3_ws/src/
git clone -b foxy-devel <https://github.com/ROBOTIS-GIT/turtlebot3_simulations.git>
cd ~/turtlebot3_ws && colcon build --symlink-install
Launch Simulation Package
export TURTLEBOT3_MODEL=burger
ros2 launch turtlebot3_gazebo empty_world.launch.py
문제 발생시 해결 방법
728x90
반응형
'공학 > ROS' 카테고리의 다른 글
WSL2 + ROS2 [Simulation_turtlebot3 - Navigation] (터틀봇3 네비게이션) (0) | 2023.02.23 |
---|---|
WSL2 + ROS2 [Simulation_turtlebot3 - SLAM] (터틀봇3 슬램) (0) | 2023.02.23 |
WSL2 + ROS2 [Simulation_turtlebot3- Gazebo], 에러 해결 (0) | 2023.02.23 |
WSL2 + ROS2 [Uninstall] 제거 (0) | 2023.02.23 |
WSL2 + ROS2 [Setup] 환경 설치 (0) | 2023.02.23 |