-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue in loading world into Gazebo #8
Comments
This is related to robotology/robotology-superbuild#1563 . |
Actually, this issue in particular is a bit more complicated. The
So, this repo would not work even if we use the robotology-superbuild from source, not only if you are using the conda packages. |
The world itself is quite basic (see https://github.com/robotology/icub-gazebo-wholebody/blob/master/worlds/icub_simple_fixed_world/icub_simple_fixed.world), so probably the easiest fix is to include and install it as part of this repo. However, also the So probably if we actually want to use this repo, we should:
|
Just to summarize, this approach actually worked. The code is pushed in this branch of my fork of the tutorial: https://github.com/xela-95/tutorial_impedance-control/tree/fix-refs Moreover in order to make Gazebo be able to find models and world files we added a bash script to add to Gazebo environment variables the folders in which models and world files are installed from the tutorial: export GAZEBO_MODEL_PATH=${CONDA_PREFIX}/share/gazebo/models:${GAZEBO_MODEL_PATH}
export GAZEBO_RESOURCE_PATH=${CONDA_PREFIX}/share/gazebo/worlds:${GAZEBO_RESOURCE_PATH} By placing it inside |
I'm trying to reproduce this tutorial by using a conda environment created in the following way:
I was able to compile and install.
I then started
yarpserver
andyarpmanager
and from it I've launched the following applications:Tutorial_on_Impedance_Control_system
Tutorial_on_Impedance_Control
This module is failing, maybe because icub is not loaded in Gazebo, probably an issue related to vvv-school/tutorial_gazebo-simple-model#1.
I've noted that the
gzserver
parameters are-slibgazebo_yarp_clock.so icub_simple_fixed_world/icub_simple_fixed.world
, hence yarp tries to load Gazebo withicub_simple_fixed_world/icub_simple_fixed.world
but it is not able to find this world file.We searched for it but we didn't find it too. Where is placed this file?
The text was updated successfully, but these errors were encountered: