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

chaos4ros2's profile - activity

2022-06-15 00:06:26 -0500 received badge  Student (source)
2021-11-21 16:29:12 -0500 received badge  Favorite Question (source)
2021-10-11 07:22:38 -0500 received badge  Famous Question (source)
2021-08-25 05:37:39 -0500 received badge  Notable Question (source)
2021-08-23 20:53:26 -0500 received badge  Popular Question (source)
2021-08-21 06:39:03 -0500 asked a question How to build a drone with ROS2 and (indoor) navigation function

How to build a drone with ROS2 and (indoor) navigation function Hello. My name is chaos and I am learning how to control

2021-08-12 02:14:49 -0500 received badge  Famous Question (source)
2021-08-12 02:14:49 -0500 received badge  Notable Question (source)
2021-05-10 23:54:27 -0500 received badge  Enthusiast
2021-04-29 07:46:36 -0500 received badge  Popular Question (source)
2021-04-27 11:03:58 -0500 answered a question MoveIt2 Move Group Python Interface Demo Node

MoveIt2 python interface doesn't exist yet but is under development.(rework of python interface #900) I am try to rewri

2021-04-25 01:39:04 -0500 marked best answer moveit2 demo question

I try to run plan.py so I create a work_space like this.

plan.py needs moveit_commander so put it in work_space too.

Then I run command : colcon build --symlink-instal & source install/setup.bash and start up lanuch file by command : ros2 launch moveit2_commander demo.launch.py

the error show below

chaos@chaos4ros2:~/moveit2_ws/src/moveit2_tutorials/doc/moveit2_commander_ws$ ros2 launch moveit2_commander demo.launch.py
[INFO] [launch]: All log files can be found below /home/chaos/.ros/log/2021-04-23-09-18-42-465832-chaos4ros2-14300
[INFO] [launch]: Default logging verbosity is set to INFO
[INFO] [plan-1]: process started with pid [14302]
[plan-1] Traceback (most recent call last):
[plan-1]   File "/home/chaos/moveit2_ws/src/moveit2_tutorials/doc/moveit2_commander_ws/install/moveit2_commander/lib/moveit2_commander/plan", line 11, in <module>
[plan-1]     load_entry_point('moveit2-commander', 'console_scripts', 'plan')()
[plan-1]   File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 490, in load_entry_point
[plan-1]     return get_distribution(dist).load_entry_point(group, name)
[plan-1]   File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 2854, in load_entry_point
[plan-1]     return ep.load()
[plan-1]   File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 2445, in load
[plan-1]     return self.resolve()
[plan-1]   File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 2451, in resolve
[plan-1]     module = __import__(self.module_name, fromlist=['__name__'], level=0)
[plan-1]   File "/home/chaos/moveit2_ws/src/moveit2_tutorials/doc/moveit2_commander_ws/build/moveit2_commander/moveit2_commander/plan.py", line 11, in <module>
[plan-1]     from moveit_commander import RobotCommander, roscpp_initialize, roscpp_shutdown
[plan-1]   File "/home/chaos/moveit2_ws/src/moveit2_tutorials/doc/moveit2_commander_ws/build/moveit_commander/moveit_commander/__init__.py", line 2, in <module>
[plan-1]     from .roscpp_initializer import *
[plan-1]   File "/home/chaos/moveit2_ws/src/moveit2_tutorials/doc/moveit2_commander_ws/build/moveit_commander/moveit_commander/roscpp_initializer.py", line 35, in <module>
[plan-1]     from moveit_ros_planning_interface import _moveit_roscpp_initializer
[plan-1] ModuleNotFoundError: No module named 'moveit_ros_planning_interface'
[ERROR] [plan-1]: process has died [pid 14302, exit code 1, cmd '/home/chaos/moveit2_ws/src/moveit2_tutorials/doc/moveit2_commander_ws/install/moveit2_commander/lib/moveit2_commander/plan --ros-args -r __node:=plan'].

I installed moveit2 correctly、and 「moveit_ros_planning_interface」is included in the pkg list(confirm it by ros2 pkg list)

I'm not familiar with build system. What else do I have to do?

2021-04-25 00:44:46 -0500 edited answer moveit2 demo question

solve the problem https://github.com/ros-planning/moveit2/issues/425

2021-04-25 00:44:46 -0500 received badge  Editor (source)
2021-04-25 00:44:42 -0500 edited answer moveit2 demo question

solve the problem https://github.com/ros-planning/moveit2/issues/425

2021-04-25 00:42:22 -0500 answered a question moveit2 demo question

solve the problem https://github.com/ros-planning/moveit2/issues/425

2021-04-25 00:42:22 -0500 received badge  Rapid Responder (source)
2021-04-23 22:07:02 -0500 asked a question moveit2 demo question

moveit2 demo question I try to run plan.py so I create a work_space like this. plan.py needs moveit_commander so put it