roslaunch 报错:Invalid roslaunch XML syntax: mismatched tag

问题描述

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.

RLException: Invalid roslaunch XML syntax: mismatched tag: line 20, column 2
The traceback for the exception was written to the log file

问题分析

本次的问题在于launch文件中的内容格式错误,比如少了一半标签

<launch>
	<group ns = ''>
		<node> 
			...
		</node>
	</group>
</launch>

补充标签,保证格式正确即可

猜你喜欢

转载自blog.csdn.net/Xu_Huitong/article/details/130524235