ROS2 in windows,running python demo is unresponsive but no error
ROS2 in windows. when run the python demo is unresponsive but no error reported. < PS C:\Windows\system32> ros2 run demo_nodes_py listener - > no answer and no error reported. All plug-ins are satisfied.Does anyone know what's going on??
So the listener will just sit around forever, waiting for data to come in via the
/chatter
topic. In order to see anything there, you need to run another terminal and run theros2 run demo_nodes_py talker
, which will publish data. If you do that, does it work?Yes,it worked !Thanks a lot my friend!