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
- ubuntu
- RTK
- 자율탐사
- WSL2
- WSL
- 터틀심
- ZED2
- Puck LITE
- Visual SLAM
- 아두이노
- GUI
- Simulation
- C++
- ROS
- 인공지능
- U-blox
- 강화학습
- turtlesim
- 자율주행
- SLAM
- 티스토리챌린지
- 오블완
- Gazebo
- ROS2
- QT
- 젯슨
- GPS
- turtlebot3
- Jetson
- 로봇
Archives
- Today
- Total
직관적인느낌
ROS 기초부터 시작하는 터틀심(turtlesim)2 - 설치 과정 본문
728x90
반응형
해당 과정은 melodic(18.04)을 기준으로 한다.
만약, Noetic(20.04)와 같은 버전으로 한다면,
"melodic"이라고 언급된 부분을 "noetic"으로 변경해준다.
melodic → noetic
- 출처
설치
- 터미널 창 생성
sudo sh -c 'echo "deb <http://packages.ros.org/ros/ubuntu> $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'
sudo apt install curl
curl -s <https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc> | sudo apt-key add -
sudo apt update
sudo apt install ros-melodic-desktop-full
echo "source /opt/ros/melodic/setup.bash" >> ~/.bashrc
source ~/.bashrc
sudo apt install python-rosdep python-rosinstall python-rosinstall-generator python-wstool build-essential
sudo apt install python-rosdep
sudo rosdep init
rosdep update
ROS 1 설치 확인
roscore
rosrun turtlesim turtlesim_node
rosrun turtlesim turtle_teleop_key
삭제
패키지 및 설정 파일 모두 삭제
sudo apt-get purge ros-*
패키지만 삭제
sudo apt-get remove ros-*
삭제 확인
rosversion -d
"melodic과 같이 버전명이 뜨면 재부팅 후 확인해줘야 한다."
728x90
반응형
'공학 > ROS' 카테고리의 다른 글
윈도우에서 ROS 사용하기! (with WSL)_설치 과정 2. (0) | 2023.03.10 |
---|---|
윈도우에서 ROS 사용하기! (with WSL)_설치 과정 1. (0) | 2023.03.10 |
ROS 기초부터 시작하는 터틀심(turtlesim) - 목차 (0) | 2023.03.10 |
ROS - 터틀심을 이용한 ROS기초, Rqt tutorial(Turtlesim) (2) | 2023.03.08 |
ROS - Gazebo tutorial (Official Tutorial), 튜토리얼 (0) | 2023.03.08 |