"could not find a package configuration file provided by \"xacro\" with any of"
时间: 2023-09-21 13:11:35 浏览: 178
asked CMake to find a package configuration file provided by “MRPT”, but CMake did not find one.
5星 · 资源好评率100%
这个错误通常是因为你的系统没有安装xacro或者xacro的路径没有在ROS的环境变量中。你可以使用以下命令安装xacro:
```
sudo apt-get install ros-<distro>-xacro
```
其中,`<distro>`是你所使用的ROS发行版,比如`melodic`或`noetic`。如果你已经安装了xacro但仍然遇到这个错误,那么你可以检查一下ROS的环境变量是否正确设置。你可以尝试使用以下命令更新环境变量:
```
source /opt/ros/<distro>/setup.bash
```
如果你使用的是其他shell,那么请使用相应的命令替换`setup.bash`。
阅读全文