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 | 31 |
Tags
- computergraphics #3dmodeling #virtualreality #augmentedreality #gamedevelopment
- machinelearning3d #deeplearninggraphics #airendering
- anisotropicgaussianlearning #gaussiansplatting #nonisotropicrenderinㅎ
- realtimerendering #machinelearning3d #deeplearninggraphics #computervision
- 3dpointcloud #differentiablerendering #3dscenerepresentation #neuralrendering
- 3dscanning #digitaltwintechnology #3dcontentcreation
- nextgengraphics #futureof3drendering #innovativerenderingtechniques
- siggraph #3dsceneunderstanding #highquality3drendering #fastrendering
- highfidelityreconstruction #sceneunderstanding #computationalgraphics
- 3drenderingtools #pointcloudsoftware #3dvisualizationsoftware
- 3dscenerepresentation #covariancematrixoptimization #adaptivegaussians
- pointbasedrendering #computergraphics #3dmodeling #volumerendering
- nerf (neural radiance fields) #3dreconstruction #pointcloudrendering #volumerendering
- 3dsceneunderstanding #pointcloudrendering #neuralscenerepresentation
- splatrendering #3dpointcloud #differentiablerendering
- siggraphtechniques #aigraphics #3dmodelingalgorithms
- anisotropickernels #ellipsoidalsplatting #orientedsplats #gradientbasedlearning
- computervisionresearch #3dreconstructiontechniques #graphicsresearch
- 3dcontentcreation
- geometrylearning #shapeoptimization #gpuacceleration #realtimerendering
- advancedrenderingtechniques #neuralscenerepresentation
- differentiablerendering #machinelearning3d #deeplearninggraphics
- gaussianprojection #covariancematrix3d #anisotropicgaussians #ellipsoidalsplatting
- nerf (neural radiance fields) #3dreconstruction
- realtimerendering #highquality3d #fastrendering
- gpuacceleration #aigraphics #virtualreality #augmentedreality #gamedevelopment
- gaussiansplatting #3dgaussiancovariance #nerf #3dreconstruction
- gaussiansplatting #3dgaussiansplatting #pointbasedrendering
- turtlebot3 #터틀봇
- optimizationalgorithms
Archives
- Today
- Total
Wiredwisdom
Noetic RoS Re-setup 본문
$ sudo apt-get purge ros-noetic-*
$ sudo apt-get autoremove
$ sudo rm -rf /etc/ros
# 소스 리스트 설정
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-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654
# 패키지 업데이트
sudo apt update
# ROS Noetic 설치 (데스크톱 풀 버전)
sudo apt install ros-noetic-desktop-full
# 의존성 설치
sudo apt install python3-rosdep python3-rosinstall python3-rosinstall-generator python3-wstool build-essential
# rosdep 초기화
sudo rosdep init
rosdep update
# 환경 설정
echo "source /opt/ros/noetic/setup.bash" >> ~/.bashrc
source ~/.bashrc
# TurtleBot3 패키지 설치
sudo apt-get install ros-noetic-dynamixel-sdk
sudo apt-get install ros-noetic-turtlebot3-msgs
sudo apt-get install ros-noetic-turtlebot3
# TurtleBot3 모델 설정 (Burger, Waffle, Waffle Pi 중 선택)
echo "export TURTLEBOT3_MODEL=burger" >> ~/.bashrc
source ~/.bashrc
# TurtleBot3 시뮬레이션 패키지 설치 (선택사항)
sudo apt-get install ros-noetic-turtlebot3-simulations
mkdir -p ~/catkin_ws/src
cd ~/catkin_ws/
catkin_make
echo "source ~/catkin_ws/devel/setup.bash" >> ~/.bashrc
source ~/.bashrc
# ROS 버전 확인
rosversion -d
# TurtleBot3 실행 테스트 (시뮬레이션)
roslaunch turtlebot3_gazebo turtlebot3_world.launch
전반적으로 문제 없이 설치 되었다.
'Autonomous Driving > Turtlebot3' 카테고리의 다른 글
wireless setup - Ubuntu 20.4 Server (0) | 2024.07.02 |
---|---|
'roscore' Error - 20.04 Ver, No GUI (0) | 2024.07.01 |
OpenCR Setup (1) | 2024.07.01 |
Master Connecting Procedure - 24 Ver (0) | 2024.07.01 |
Raspberry pi 3B+ OS setup (0) | 2024.07.01 |