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
- OS1
- aes-ctr
- build:12
- aes_ctr
- Linux
- aes ctr
- studio
- build:15
- geth 설치
- 시스템프로그래밍
- c
- ousterstudio
- ros
- aes decrypt
- ar과 make 사용법
- aes-128-ctr
- catkin_make
- error
- floyld
- LIDAR
- ethereum
- geth 설치 에러
- ouster
- c언어로 쉽게 풀어쓴 자료구조
- aes ctr decrypt
- gcc 실행
- gcc
- gcc를 사용한 컴파일 예제
- build 에러
- geth 설치 안됨
Archives
- Today
- Total
CODERJH
Ouster-ROS 설치 과정 본문
아래 과정 중에는 ROS가 필수적으로 설치 되어 있어야 함. (Melodic or Noetic)
사전 설치 필요 패키지
sudo apt install -y ros-$ROS_DISTRO-pcl-ros ros-$ROS_DISTRO-rviz
# $ROS_DISTRO는 설치한 ROS version 명을 대체하면 됨(Melodic or Noetic)
sudo apt install -y build-essential libeigen3-dev libjsoncpp-dev libspdlog-dev libcurl4-openssl-dev cmake
ROS 설치 과정
mkdir -p catkin_ws/src && cd catkin_ws/src
git clone --recurse-submodules https://github.com/ouster-lidar/ouster-ros.git
source /opt/ros/<ros-distro>/setup.bash
# <ros-distro>는 melodic or noetic으로 대체
cd catkin_ws
catkin_make --cmake-args -DCMAKE_BUILD_TYPE=Release
에러 발생 시 참고
catkin_make --cmake-args -DCMAKE_BUILD_TYPE=Release
이 부분에서 아래와 같은 에러가 발생했었음
CMake Error at /opt/ros/melodic/share/catkin/cmake/empy.cmake:29 (message):
Unable to find either executable 'empy' or Python module 'em'... try
installing the package 'python-empy'
Call Stack (most recent call first):
/opt/ros/melodic/share/catkin/cmake/all.cmake:163 (include)
/opt/ros/melodic/share/catkin/cmake/catkinConfig.cmake:20 (include)
CMakeLists.txt:56 (find_package)
이 때에는 아래 방식으로 catkin_make 하면 정상적으로 진행됨
catkin_make -DPYTHON_EXECUTABLE=/usr/bin/python3
'Ouster_LiDAR' 카테고리의 다른 글
Ouster OS1-32U 연결 과정 (0) | 2023.11.29 |
---|---|
LiDAR OS1-32U Ouster studio 연결 방법 (0) | 2023.11.29 |
Ouster-ROS Sensor Mode 과정 중 발생 에러 (0) | 2023.11.29 |