오류 모음집

caktin make error Invoking "make -j8 -l8" "make -j8 -l8" failed에러 해결

Tomitom 2023. 3. 7. 17:04
반응형

catkin make 중 Invoking "make -j8 -l8" failed 에러 발생.. 

 

 

터미널에 다음과 같이 입력 

cd ~catkin_ws/devel

~/catkin_ws/devel$ source setup.bash

 

그러나 해결 안됨 

 

그런데? catkin 명령을 찾을 수 없다.. ㅋㅋ

돌아버린 것 같다.. catkin 설치 

참고.. 사이트 

https://catkin-tools.readthedocs.io/en/latest/installing.html

 

Installing catkin_tools — catkin_tools 0.0.0 documentation

You can install the catkin_tools package as a binary through a package manager like pip or apt-get, or from source. Note This project is still in beta and has not been released yet, please install from source. In particular, interface and behavior are stil

catkin-tools.readthedocs.io

 

명령어 입력.. 

sudo apt-get update
sudo apt-get install python3-catkin-tools

 

이미 catkin_make 를 한 것이 있으니 catkin init 으로 catkin workspace  초기화 후 

catkin build 실행.. 

 

 

 

the.. end.. !

반응형