본문 바로가기
Libraries & Packages/ROS

catkin build 실행 시 'ERROR: No matching distribution found for python3-empy' 에러 발생하는 경우

by yongee97 2023. 12. 8.

에러 화면

 

 

* 문제 상황

catkin build로 ROS pacakge를 빌드하려고 하면 위 에러가 발생

이때 pip install로 empy를 설치하려고 하면 이미 설치되었다고 나옴.

 

 

* 해결 방법

catkin build 뒤에 파이썬 경로를 명시

catkin build -DPYTHON_EXECUTABLE=/usr/bin/python3

 

* Reference

https://github.com/ysl208/iRoPro/issues/59

 

Unable to find either executable 'empy' or Python module 'em'... try installing the package 'python-empy' · Issue #59 · ysl

When running catkin build I get the following error CMake Error at /opt/ros/melodic/share/catkin/cmake/empy.cmake:29 (message): Unable to find either executable 'empy' or Python module 'em'... try ...

github.com