-- Could NOT find PY_em (missing: PY_EM) CMake Error at /opt/ros/noetic/share/catkin/cmake/empy.cmake:30 (message): Unable to find either executable 'empy' or Python module 'em'... try installing the package 'python3-empy' Call Stack (most recent call first): /opt/ros/noetic/share/catkin/cmake/all.cmake:164 (include) /opt/ros/noetic/share/catkin/cmake/catkinConfig.cmake:20 (include) CMakeLists.txt:58 (find_package)
时间: 2023-08-15 11:40:04 浏览: 344
cmake-3.17.3-py3-none-win_amd64.whl
这个错误提示是在使用 CMake 进行编译时出现的,是因为缺少 Python 模块 empy 或者 empy 可执行文件。你可以尝试安装 Python 模块 empy 或者安装 empy 可执行文件来解决这个问题。如果你使用的是 Ubuntu 系统,可以使用以下命令安装 Python 模块 empy:
```
sudo apt-get install python3-empy
```
如果你使用的是其他系统,可以根据系统要求安装相应的 empy 软件包。
阅读全文