Error while running ros2 launch while launching action server

I am working on the project of the ros2 action project and while running the launch file of the action server I am getting this error
" Caught exception in launch (see debug for traceback): executable ‘actions_quiz_server’ not found on the libexec directory ‘/home/user/ros2_ws/install/actions_quiz/lib/actions_quiz’"

And the same error is repeating for the ‘actions_quiz_client’ too. Can anyone help me with the reason of this error

Hello @subhashmn2610 ,

The error is indicating that ROS2 cannot find the actions_quiz_server executable inside the install folder. This can happen for several reasons. A couple of common reasons are:

  1. You are not creating this executable in your setup.py file
  2. You are creating the executable, but with a different name

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.