ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Your package name is abc and the Python code generated for the message will end up in the abc namespace. Python already contains a package named abc which it needs to find. Your package collides with that and therefore prevents Python from working.

Hence you should rename your package to something not colliding with Python names (if it contains Python code / messages).