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

Resource not found: simulation_gazebo

asked 2021-12-29 03:27:15 -0500

quyetbui gravatar image

updated 2021-12-29 10:25:24 -0500

I'm in a problem when running a world in gazebo. My "world.launch" file:

<launch>

<arg name="robot" default="machines"/>

<arg name="debug" default="false"/>

<arg name="gui" default="true"/>

<arg name="headless" default="false"/>

<arg name="pause" default="false"/>

<include file="$(find gazebo_ros)/launch/empty_world.launch">

<arg name="world_name" value="$(find my_worlds)/worlds/world01.world"/>

<arg name="debug" value="$(arg debug)" />

<arg name="gui" value="$(arg gui)" />

<arg name="paused" value="$(arg pause)"/>

<arg name="use_sim_time" value="true"/>

<arg name="headless" value="$(arg headless)"/> 

<env name="GAZEBO_MODEL_PATH" value="$(find simulation_gazebo)/models:$(optenv GAZEBO_MODEL_PATH)"/>

</include>

</launch>

My problem is in below:

Resource not found: simulation_gazebo

ROS path [0]=/opt/ros/noetic/share/ros

ROS path [1]=/home/quyet/simulation_ws/src

ROS path [2]=/opt/ros/noetic/share

The traceback for the exception was written to the log file

Could anyone give me answers ? Thanks for your help!

edit retag flag offensive close merge delete

Comments

Please edit your description to provide a url for the demo you have downloaded, and copy/paste the exact command line you used that generated the error message. You can edit using the "edit" button at the end of the description.

Mike Scheutzow gravatar image Mike Scheutzow  ( 2021-12-29 08:14:44 -0500 )edit

You did not provide either of the things I asked for.

Mike Scheutzow gravatar image Mike Scheutzow  ( 2021-12-30 09:56:05 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
0

answered 2022-01-15 13:54:15 -0500

ljaniec gravatar image

Some hints, not truly an answer: Use the command rospack list | grep gazebo and check which ones you have for gazebo.

It is also important to check your $ROS_PACKAGE_PATH to make sure you have the libraries of ROS included in your environment.

Relevant question: https://answers.ros.org/question/3531...

P.S. Question is terribly formatted and hard to understand so it is shot in the dark.

edit flag offensive delete link more

Question Tools

Stats

Asked: 2021-12-29 03:27:15 -0500

Seen: 715 times

Last updated: Jan 15 '22