robotology / gym-ignition

Framework for developing OpenAI Gym robotics environments simulated with Ignition Gazebo
https://robotology.github.io/gym-ignition
GNU Lesser General Public License v3.0
224 stars 26 forks source link

Cannot run example panda_pick_and_place.py #350

Closed nicholaspalomo closed 3 years ago

nicholaspalomo commented 3 years ago

I cannot run the panda_pick_and_place.py example.

When running: python examples/panda_pick_and_place.py

I get the following traceback:

Traceback (most recent call last):
  File "examples/panda_pick_and_place.py", line 8, in <module>
    from gym_ignition.rbd import conversions
ModuleNotFoundError: No module named 'gym_ignition.rbd'

To reproduce:

Thanks for all your work on this project. It looks really cool!

diegoferigo commented 3 years ago

Hi @nicholaspalomo, thanks for opening this issue. Your Ubuntu version is not currently supported, as reported in our Support Policy.

Regardless, can you try to provide the output of the following commands:

>>> import gym_ignition
>>> from gym_ignition.rbd import conversions
sudo apt-get install tree
tree $(python -c "import gym_ignition, pathlib; print(pathlib.Path(gym_ignition.__file__).parent)")