일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 반복문
- 오늘도 우라라 공략
- 기초
- 환경설정
- 오늘도 우라라 펫
- C++
- mariaDB
- topic
- 데이터 베이스
- JungOl
- publish
- 오늘도 우라라 펫 공략
- install opencv-4.4.0 on ubuntu 22.04
- 그랑사가
- ubuntu
- mysql
- 프로그래밍
- MSG
- Linux
- LeetCode
- ros
- 토픽
- 마리아 DB
- 등차수열
- 리눅스
- while
- 우분투
- 오늘도 우라라
- C언어
- Subscribe
- Today
- Total
하루의 쉼터
Install Pangolin on Ubuntu 22.04 본문
1. 경로 설정
* 자신이 사용할 ws 경로 설정
2. git clone
git clone --recursive https://github.com/stevenlovegrove/Pangolin.git
3. 추천 종속성 설치
./scripts/install_prerequisites.sh --dry-run recommended
4. 의존성 설치
./scripts/install_prerequisites.sh recommended
5. Build
cmake -B build
cmake --build build
* 아래와 같은 에러가 발생 시
5-1. build-essential 패키지 설치
sudo apt update
sudo apt install build-essential
6. Ninja for faster builds
cmake -B build -GNinja
cmake --build build
* ninja가 없다면 설치
sudo apt install ninja-build
* ninja generator 에러 발생 시 지우고 다시 빌드
rm -rf build/CMakeCache.txt build/CMakeFiles
7. pip python
cmake --build build -t pypangolin_pip_install
* 아래와 같은 에러 발생 시
sudo apt install python3-pip
* 파이썬 환경 설정이 되있지 않은 경우
which python3
여기서 나오는 경로를 통해 아래와 같이 진행하고 재진행
cmake .. -DPython_EXECUTABLE=/path/to/python
8. run and test
cmake -B build -G Ninja -D BUILD_TESTS=ON
cmake --build build
cd build
ctest
Reference :
https://github.com/stevenlovegrove/Pangolin
cmake --build . --target pypangolin_pip_install creates an unknown-unknown.whl · Issue #752 · stevenlovegrove/Pangolin
cmake --build . --target pypangolin_pip_install Consolidate compiler generated dependencies of target pango_core [ 9%] Built target pango_core Consolidate compiler generated dependencies of target ...
github.com
https://github.com/stevenlovegrove/Pangolin/issues/752
cmake --build . --target pypangolin_pip_install creates an unknown-unknown.whl · Issue #752 · stevenlovegrove/Pangolin
cmake --build . --target pypangolin_pip_install Consolidate compiler generated dependencies of target pango_core [ 9%] Built target pango_core Consolidate compiler generated dependencies of target ...
github.com
'프로그래밍 > SoftWare' 카테고리의 다른 글
CP210x USB to UART Driver install for windows11 (0) | 2024.11.14 |
---|---|
Install XSense Manager for Ubuntu22.04 feat. MTi-630 (2) | 2024.11.13 |
Install opencv-4.4.0 on Ubuntu 22.04 (2) | 2024.10.16 |
[Wifi] 노트북 와이파이 사라짐(드라이브 문제) (8) | 2022.02.05 |