1. 설치
ROS 설치 ROS.org 페이지
http://wiki.ros.org/noetic/Installation/Ubuntu
1.2 Setup your sources.list
sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'
1.3 Set up yours keys
sudo apt install curl # if you haven't already installed curl
curl -s https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | sudo apt-key add -
1.4 Istallation
sudo apt update
sudo apt install ros-noetic-desktop-full
apt search ros-noetic
1.5 Environment setup
source /opt/ros/noetic/setup.bash
echo "source /opt/ros/noetic/setup.bash" >> ~/.bashrc
source ~/.bashrc
1.6 Dependencies for building packages
sudo apt install python3-rosdep python3-rosinstall python3-rosinstall-generator python3-wstool build-essential
1.6.1 Initialize rosdep
sudo apt install python3-rosdep
sudo rosdep init
rosdep update
2. 삭제
기존 설치 ROS삭제
sudo apt-get purge ros-* (패키지와 설정파일 함께 삭제)
sudo apt-get remove ros-* (패키지만 삭제, 설정파일은 남겨둠)
삭제되었는지 확인
rosversion -d
여기에서 <unknown>이라고 뜨면 삭제가 된 것임.
만약 기존 ros version이 확인되면, 재부팅 후 다시 확인해 보면, 삭제된 것을 확인할 수 있음.
'Project > #1 AI 기반 자율주행 로봇을 이용한 매장 관리' 카테고리의 다른 글
#0. 프로젝트 진행 순서 (0) | 2022.05.15 |
---|---|
+. Ubuntu 20.4 에서 Rviz 실행 방법 (0) | 2022.05.15 |
#4. Cartographer 데모 백에서 지도 제작자 ROS 실행 및 Cartographer 저장 (0) | 2022.05.15 |
#3. ROS - Noetic&Cartographer 설치 (0) | 2022.05.13 |
#1. ROS - 맥북 M1에서 Ubuntu 20.4 설치 (2) | 2022.05.13 |