ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

[spawn_model1-4] process has died [pid 6923, exit code 1, cmd /opt/ros/melodic/lib/gazebo_ros/spawn_

2022-02-20 17:34:13  阅读:978  来源: 互联网

标签:spawn opt log started joes ros gazebo


一、问题描述:

joes@joes-PC:~/jiao/ROS_Projects/05_aotexueyuan_Project$ roslaunch ros23_urdf02_gazebo demo01_helloworld.launch
... logging to /home/joes/.ros/log/194743e4-922e-11ec-a5c5-84a938321ff7/roslaunch-joes-PC-6862.log
Checking log directory for disk usage. This may take a while.
Press Ctrl-C to interrupt
Done checking log file disk usage. Usage is <1GB.

started roslaunch server http://joes-PC:45837/

SUMMARY
========

PARAMETERS
 * /gazebo/enable_ros_network: True
 * /robot_description: <robot name="my_c...
 * /rosdistro: melodic
 * /rosversion: 1.14.12
 * /use_sim_time: True

NODES
  /
    gazebo (gazebo_ros/gzserver)
    gazebo_gui (gazebo_ros/gzclient)
    spawn_model1 (gazebo_ros/spawn_model)

auto-starting new master
process[master]: started with pid [6872]
ROS_MASTER_URI=http://localhost:11311

setting /run_id to 194743e4-922e-11ec-a5c5-84a938321ff7
process[rosout-1]: started with pid [6884]
started core service [/rosout]
process[gazebo-2]: started with pid [6891]
process[gazebo_gui-3]: started with pid [6908]
process[spawn_model1-4]: started with pid [6923]
the rosdep view is empty: call 'sudo rosdep init' and 'rosdep update'
[ INFO] [1645348724.337832150]: Finished loading Gazebo ROS API Plugin.
[ INFO] [1645348724.339012949]: waitForService: Service [/gazebo/set_physics_properties] has not been advertised, waiting...
[ INFO] [1645348724.422424183]: Finished loading Gazebo ROS API Plugin.
[ INFO] [1645348724.423308018]: waitForService: Service [/gazebo_gui/set_physics_properties] has not been advertised, waiting...
Traceback (most recent call last):
  File "/opt/ros/melodic/lib/gazebo_ros/spawn_model", line 239, in <module>
    exit_code = sm.run()
  File "/opt/ros/melodic/lib/gazebo_ros/spawn_model", line 149, in run
    xml_parsed = xml.etree.ElementTree.fromstring(model_xml)
  File "/usr/lib/python2.7/xml/etree/ElementTree.py", line 1311, in XML
    parser.feed(text)
  File "/usr/lib/python2.7/xml/etree/ElementTree.py", line 1657, in feed
    self._parser.Parse(data, 0)
UnicodeEncodeError: 'ascii' codec can't encode characters in position 58-60: ordinal not in range(128)
[ INFO] [1645348724.584020193]: waitForService: Service [/gazebo/set_physics_properties] is now available.
[spawn_model1-4] process has died [pid 6923, exit code 1, cmd /opt/ros/melodic/lib/gazebo_ros/spawn_model -urdf -model car -param robot_description __name:=spawn_model1 __log:=/home/joes/.ros/log/194743e4-922e-11ec-a5c5-84a938321ff7/spawn_model1-4.log].
log file: /home/joes/.ros/log/194743e4-922e-11ec-a5c5-84a938321ff7/spawn_model1-4*.log
[ INFO] [1645348724.602820002, 0.004000000]: Physics dynamic reconfigure ready.

二、解决:

sudo gedit /usr/lib/python2.7/xml/etree/ElementTree.py

加入以下代码:

reload(sys)
sys.setdefaultencoding("utf-8")

标签:spawn,opt,log,started,joes,ros,gazebo
来源: https://blog.csdn.net/jiaostyle/article/details/123033225

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有