일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 오블완
- turtlebot3
- ROS
- ZED2
- QT
- 젯슨
- RTK
- WSL
- 자율주행
- 터틀심
- ubuntu
- 아두이노
- WSL2
- C++
- turtlesim
- Puck LITE
- Gazebo
- 로봇
- GUI
- SLAM
- 인공지능
- U-blox
- GPS
- Simulation
- Visual SLAM
- ROS2
- 자율탐사
- 강화학습
- 티스토리챌린지
- Jetson
- Today
- Total
목록WSL2 (8)
직관적인느낌
pip를 사용하고자 아래를 설치하려고 했을때, 안되는 경우가 있다. sudo apt install python-pip Solution sudo apt update && upgrade - 파이썬 2.x 버전 사용 sudo apt install python-pip - 파이썬 3.0 이상 버전 사용시 sudo apt install python3-pip pip 20.0.2의 기존 설치 방법 : 파이썬이 리눅스 배포판에 설치되어 있지 않는 경우에 curl https://bootstrap.pypa.io/get\-pip.py \-o get\-pip.py python get-pip.py
출처 SSH 서버 설치하기 WSL2[4] - SSH 접속하기 turtlebot - bringup https://emanual.robotis.com/docs/en/platform/turtlebot3/bringup/#bringup SSH 서버 설치하기 #패키지 업데이트하기 sudo apt update #SSH서버 설치하기 sudo apt install openssh-server #ssh셋팅하기 sudo systemctl enable ssh #net-tools 설치 sudo apt install net-tools #ip주소 확인 ifconfig #호스트키 생성 sudo ssh-keygen -A #비밀번호 인증방식 사용 sudo nano /etc/ssh/sshd_config #다음 내용을 수정합니다. Passw..
출처 ROBOTIS e-Manual - 준비물 : SLAM에서 실행한 map 정보에 대한 파일 (map.yaml) Launch Simulation World export TURTLEBOT3_MODEL=burger ros2 launch turtlebot3_gazebo turtlebot3_world.launch.py Run Navigation Node export TURTLEBOT3_MODEL=burger ros2 launch turtlebot3_navigation2 navigation2.launch.py use_sim_time:=True map:=$HOME/map.yaml Estimate Initial Pose ros2 run turtlebot3_teleop teleop_keyboard Set Naviga..
Simulation_turtlebot3 - SLAM(터틀봇3 슬램) Launch Simulation World - Gazebo export TURTLEBOT3_MODEL=burger ros2 launch turtlebot3_gazebo turtlebot3_world.launch.py Run SLAM Node - Rviz2 export TURTLEBOT3_MODEL=burger ros2 launch turtlebot3_cartographer cartographer.launch.py use_sim_time:=True Run Teleoperation Node - keyboard export TURTLEBOT3_MODEL=burger ros2 run turtlebot3_teleop teleop_keyboard ..
Launch Simulation Package export TURTLEBOT3_MODEL=burger ros2 launch turtlebot3_gazebo empty_world.launch.py 에러 해결 출처 package 'turtlebot3_gazebo' not found, searching: ['/opt/ros/foxy'] Error, 에러 코드 Package 'turtlebot3_gazebo' not found: "package 'turtlebot3_gazebo' not found, searching: ['/opt/ros/foxy']" Error → Solution sudo apt install ros-foxy-turtlebot3-gazebo set env export TURTLEBOT3_MOD..
Simulation_turtlebot3 - Gazebo 출처 ROBOTIS e-Manual Install ROS on PC wget 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..
ROS2 - Uninstall 출처 Ubuntu (Debian) — ROS 2 Documentation: Foxy documentation sudo apt remove ~nros-foxy-* && sudo apt autoremove sudo rm /etc/apt/sources.list.d/ros2.list sudo apt update sudo apt autoremove # Consider upgrading for packages previously shadowed. sudo apt upgrade
ROS2 공식 홈페이지 설치 과정 - 출처 Ubuntu (Debian) — ROS 2 Documentation: Foxy documentation Resources Status Page: ROS 2 Foxy (Ubuntu Focal): amd64, arm64 Jenkins Instance Repositories Set locale locale # check for UTF-8 sudo apt update && sudo apt install locales 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 locale # verify settings Set S..