-
问题1:Could not find a package configuration file provided by "tf2_sensor_msgs"
-
解决:
sudo apt-get install ros-noetic-tf2-sensor-msgs -
问题2:CMake Error at APACE/trajectory/CMakeLists.txt:10 (find_package):
By not providing "FindNLopt.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by "NLopt", but
CMake did not find one.
Could not find a package configuration file provided by "NLopt" with any of
the following names:
NLoptConfig.cmake
nlopt-config.cmake
Add the installation prefix of "NLopt" to CMAKE_PREFIX_PATH or set
"NLopt_DIR" to a directory containing one of the above files. If "NLopt"
provides a separate development package or SDK, be sure it has been
installed.
-
解决:Ubuntu20版本通过apt安装会出现错误,先卸载nlopt,
sudo apt remove ros-noetic-nlopt,然后通过下面的命令源码安装bashcd path to APACE git clone https://github.com/stevengj/nlopt.git cd nlopt mkdir build && cd build cmake .. make sudo make install
港科大APACE复现问题
@MGod吾2024-06-27 18:01
相关推荐
Mr.Winter`18 小时前
自动驾驶运动规划 | 基于自行车模型的运动学模型和横向动力学模型详细推导图解Tipriest_2 天前
自定义ROS topic 的常用消息格式及类型kalvin_y_liu7 天前
Lumi 具神智能机器人 SDK说明和ACT算法中的学习与推理lihongli00013 天前
ros中的Navigation导航系统lihongli00014 天前
ROS与Qt结合开发CAN控制界面(发布自定义的truck_send_can1消息)酌量16 天前
从 ROS 订阅视频话题到本地可视化与 RTMP 推流全流程实战lihongli00017 天前
修改ros工作空间名称方法与步骤lihongli00019 天前
CAN、ROS数据录制与rqt图形化显示Mr.Winter`22 天前
深度强化学习 | 基于SAC算法的动态避障(ROS C++仿真)老黄编程24 天前
ros2 中 CMakeLists.txt 的 ament_package 有什么用?有什么使用约束?必须放置尾部吗?