ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I have the same problem. You can print the smach package path
import smach
smach.__path__
In my case, catkin_make create a redundant smach package in my workspace devel directory.
Just delete it.
2 | Suggested edit |
I have the same problem and from smach import State
can not solve my problem. You can So, I print the smach package pathpath.
import smach
smach.__path__print(smach.__path__)
In my case, I found that catkin_make create a redundant smach package in my workspace devel directory.directory. Just delete it and solved.
Just delete it.