๐ข turtleobot3 @ubuntu 20.04
1. ํ์ํ ์ข ์์ฑ ์ค์น $ sudo apt-get update $ sudo apt-get install build-essential cmake gcc g++ git unzip pkg-config $ sudo apt-get install libjpeg-dev libpng-dev libtiff-dev libavcodec-dev libavformat-dev libswscale-dev libgtk2.0- 2. opencv ์ opencv_contrib ๋น๋ $ cd ~ $ wget -O opencv.zip https://github.com/opencv/opencv/archive/4.5.0.zip $ wget -O opencv_contrib.zip https://github.com/opencv/opencv_co..
* catkin ์ด๋? โจ ROS ์์ ํ๋ก๊ทธ๋จ์ ์ฌ์ฉํ๊ธฐ ์ build ๋ฅผ ํ ๋ ์ฌ์ฉํ๋ ์์คํ ์ด๋ค. * catkin workspace ๋? โจ ํ๋ก๊ทธ๋จ๊ณผ ๊ด๋ จ๋ ROS ์ฝ๋๋ฅผ ๋ชจ์๋๋ directory ๋ก์จ ์์ ๊ณต๊ฐ์ ์ต์์ ํด๋์ด๋ค. * catkin_ws ์ ํ์ ํด๋ โ build : catkin ์์ ๊ฒฐ๊ณผ ์ค ์ผ๋ถ๋ฅผ ์ ์ฅํ๋ ๊ณต๊ฐ โก devel : ์์น๋ฅผ ์๋ ค์ฃผ๋ ํ๊ฒฝ์ค์ ํ์ผ์ด ์๋ ๊ณณ (/home/username/catkin_ws/devel/setup.bash) โข src : ROS ํจํค์ง๋ฅผ ์ ์ฅํ๋ ๊ณต๊ฐ 1. directory ๋ง๋ค๊ธฐ $ mkdir -p ~/catkin_ws/src 2. CMakeLists.txt ์์ฑ $ cd ~/catkin_ws/src $ catkin_init_work..
์ฐธ๊ณ : http://wiki.ros.org/noetic/Installation/Ubuntu 1. sources.list ์ noetic ์ ๋ํ ์ ๋ณด ์ถ๊ฐ $ sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list' 2. key ๋ฑ๋ก $ sudo apt install curl $ curl -s https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | sudo apt-key add - 3. ์ ๋ฐ์ดํธ $ sudo apt update 4. desktop-full ์ค์น $ sudo apt ..