码迷,mamicode.com
首页 > 其他好文 > 详细

ROS之服务器与客户端简单程序遇到的错误

时间:2018-04-14 11:22:07      阅读:1405      评论:0      收藏:0      [点我收藏+]

标签:解决方法   post   log   exec   mes   cat   com   ror   win   

在按ROS入门教程(点击打开链接)行进过程中遇到的错误

 

1、exec_depend与run_depend一样

 

在按ROS入门教程(点击打开链接)行进过程中到了执行

rosmsg show beginner_tutorials/Num

命令时,出现提示

The manifest (with format version 2) must not contain the following tags: run_depend

的警告,这个的主要解决方法是使用catkin方式时在package.xml文件中将教程中添加的两行语句

 <build_depend>message_generation</build_depend>
  <run_depend>message_runtime</run_depend>

要改成

  <build_depend> message_generation </build_depend>

  <exec_depend> message_runtime </exec_depend>

或者

<build_export_depend>message_generation</build_export_depend>
<exec_depend>message_runtime</exec_depend>

这样就得以解决问题

 

 

2、ROSCORE每次启动必须打开

[ERROR] [1446531999.044935824]: [registerPublisher] Failed to contact master at [localhost:11311]. Retrying...

解决:请检查 roscore 是否正常打开。

        每次进行运行测试时都要首先运行 roscore。

 

ROS之服务器与客户端简单程序遇到的错误

标签:解决方法   post   log   exec   mes   cat   com   ror   win   

原文地址:https://www.cnblogs.com/flyingjun/p/8830535.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!