《ROS机器人开发实践》胡春旭 源码报错问题及解决

《ROS机器人开发实践》源码复现报错

在ROS学习过程中,古月居老师的ROS系列教学仿佛是苦海明灯,很适合入门,我最近也在跟着这个教材学习。
话不多说,首先先附上胡春旭版教程的源码获取和使用方式:
在home目录下先新建工作空间:

mkdir -p ~/catkin_ws/src
cd ~/catkin_ws/src

然后再将老师的源代码clone到你的ros工作空间的src目录下

$ git clone https://github.com/huchunxu/ros_exploring.git

下边是我在跟着《ROS机器人开发实践》一书,复现案例时候遇到的一些问题,也提供了一下解决方法。(代码中还是有很多坑需要填的)

1、源码编译catkin_make失败

可参考大神文章(https://blog.csdn.net/YiKangJ/article/details/82024809)我只是在此基础上汇总了一些
原文说到:如果将源码下载到ROS的工作空间中,则需要将其中的ros2文件夹移出到工作空间之外(或者将其放置到ROS 2的工作空间中),否则会导致编译失败。
但是就算如此还会有问题:

报错1

Could not find the required component ‘ecto’. The following CMake error indicates that you either need to install the package with the same name or change your environment so that it can be found.
CMake Error at /opt/ros/kinetic/share/catkin/cmake/catkinConfig.cmake:83 (find_package):
Could not find a package configuration file provided by “ecto” with any of
the following names:
ectoConfig.cmake
ecto-config.cmake

Add the installation prefix of “ecto” to CMAKE_PREFIX_PATH or set
“ecto_DIR” to a directory containing one of the above files. If “ecto”
provides a separate development package or SDK, be sure it has been
installed.

Call Stack (most recent call first):
ros_exploring-master/robot_perception/ork_tutorials/CMakeLists.txt:4 (find_package)
– Configuring incomplete, errors occurred!
See also “/home/qinpeiwang/catkin_ws/build/CMakeFiles/CMakeOutput.log”.
See also “/home/qinpeiwang/catkin_ws/build/CMakeFiles/CMakeError.log”.
Invoking “cmake” failed

解决

缺少ecto这个包,直接安装就行

$ sudo apt-get install ros-kinetic-ecto

报错2

缺少 manipulation-msgs 包,直接安装(注意不是“_”而是“-”,尽量直接复制)

解决

$ sudo apt install ros-kinetic-manipulation-msgs

报错3

缺少gazebo_ros_control 包

解决

$ sudo apt install ros-kinetic-gazebo-ros-control

报错3

缺少链接库报错:
/usr/bin/ld: cannot find -lmsc
collect2: error: ld returned 1 exit status

解决

参考书中207页说明,将科大讯飞的SDK库文件拷贝到系统目录下:
注:先进入库文件所在文件夹 ros_exploring/robot_perception/robot_voice/libs/x64(32位系统最后选择x86文件夹) 再执行如下命令

$ sudo cp libmsc.so /usr/lib/libmsc.so

报错4

权限错误:

/home/jyk/catkin_ws/build/ros_exploring/ros_advanced/dynamic_tutorials/setup_custom_pythonpath.sh: 5:exec: /home/jyk/catkin_ws/src/ros_exploring/ros_advanced/dynamic_tutorials/cfg/Tutorials.cfg: Permission denied
ros_exploring/ros_advanced/dynamic_tutorials/CMakeFiles/dynamic_tutorials_gencfg.dir/build.make:63: recipe for target ‘/home/jyk/catkin_ws/devel/include/dynamic_tutorials/TutorialsConfig.h’ failed

或者是

Makefile:138: recipe for target 'all' failed
make: *** [all] Error 2
Invoking "make -j2 -l2" failed

解决

进入 ros_exploring/ros_advanced/dynamic_tutorials/cfg文件夹,执行如下命令:

chmod +x Tutorials.cfg

报错5

pocketsphinx 语音包安装报错:
ImportError: No module named pygst

解决

错误原因为缺少 python-gst 依赖,执行如下命令即可解决问题:

sudo apt install python-gst0.10

报错6

Could not find the required component 'moveit_ros_perception'. 
The following CMake error indicates that you either need to install the package with the same name or change your environment so that it can be found.
CMake Error at /opt/ros/kinetic/share/catkin/cmake/catkinConfig.cmake:83 (find_package):   
Could not find a package configuration file provided by   "moveit_ros_perception" with any of the following names:

解决

这个部分的话是运行到Moveit时候才有的问题,但是要复现代码,可以直接先安装Moveit。因为必然要安装。

sudo apt-get install ros-kinetic-moveit

到这一步一般就可以正常编译了,但是进入终端后可以先source一下,再编译

cd ~/catkin_ws
source devel/setup.bash
catkin_make

假如不想每次开终端都需要source的话,你可以直接这样设置:
终端输入:

终端输入:gedit ~/.bashrc

文件打开后直接翻到最后面,在底部添加以下代码,保存退出,每次开新的终端都可以直接source了。

source ~/catkin_ws/devel/setup.bash

2、其他常见错误

报错7

-- Configuring incomplete, errors occurred!
See also "/home/litao/catkin_ws/build/CMakeFiles/CMakeOutput.log". 
See also "/home/litao/catkin_ws/build/CMakeFiles/CMakeError.log". Invoking "cmake" failed

不要直接去更改CMakeList.txt,只需要清理构建空间就可以

rm -r build devel
catkin_make

报错8

ERROR: cannot launch node of type [arbotix_python/arbotix_driver]: arbotix_python
ROS path [0]=/opt/ros/kinetic/share/ros
ROS path [1]=/home/xcy/catkin_lml/src
ROS path [2]=/home/xcy/catkin_syl/src
ROS path [3]=/home/xcy/catkin_ws/src
ROS path [4]=/opt/ros/kinetic/share

解决

检查是否安装 arbotix_[python](https://so.csdn.net/so/search?from=pc_blog_highlight&q=python) package

roscd arbotix_python

安装 arbotix_python

sudo apt-get install ros-kinetic-arbotix

报错9

Invoking :make -j2" fail and undefined reference to 'libusb

这个问题,我花了很长时间,一直没找到合适的解决方式,但有人用下边的方式解决了:

cd ~/catkin_ws/src
git clone https://github.com/uos/sick_tim.git
cd ~/catkin_ws/
catkin_make

报错10

[WARN] [1588564677.171522]: The ‘use_gui’ parameter was specified, which is deprecated. We’ll attempt to find and run the GUI, but if this fails you should install the ‘joint_state_publisher_gui’ package instead and run that. This backwards compatibility option will be removed in Noetic.
[ERROR] [1581780877.646970]: Could not find the GUI, install the ‘joint_state_publisher_gui’ package

解决

安装好GUI的包就可以

sudo apt-get install ros-kinetic-joint-state-publisher-gui

后续问题持续更新

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 196,583评论 5 462
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 82,669评论 2 374
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 143,684评论 0 325
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,682评论 1 267
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 61,533评论 5 358
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,396评论 1 275
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,814评论 3 387
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,458评论 0 255
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,745评论 1 294
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,789评论 2 314
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,565评论 1 326
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,410评论 3 315
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,828评论 3 300
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,050评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,342评论 1 253
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,793评论 2 342
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 41,010评论 2 337

推荐阅读更多精彩内容