ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I determined the problem was that the Python module name (oars_gb
, the name of the folder in my repo) was conflicting with the ROS package name. When I uncommented generate_messages(...)
, it generated a Python module in devel/oars_gb
with my custom message, which is where it then started looking for the libraries
folder as well.
To fix it, I renamed the folder in my repo to oars_gb_pkg
.