rohanpsingh / mujoco-python-viewer

Simple renderer for use with MuJoCo (>=2.1.2) Python Bindings.
BSD 2-Clause "Simplified" License
163 stars 24 forks source link

Add imageio as dependency in setup.py #2

Closed GiulioRomualdi closed 2 years ago

GiulioRomualdi commented 2 years ago

Hi! First of all, thank you for implementing this package!

I tried to install it by following the documentation in the readme (i.e. pip install mujoco-python-viewer) However, when I try to import mujoco_viewer I get the following error

Python 3.8.10 (default, Mar 15 2022, 12:22:08) 
[GCC 9.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import mujoco
>>> import mujoco_viewer
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/gromualdi/venv/test-mujoco/lib/python3.8/site-packages/mujoco_viewer/__init__.py", line 1, in <module>
    from mujoco_viewer.mujoco_viewer import MujocoViewer
  File "/home/gromualdi/venv/test-mujoco/lib/python3.8/site-packages/mujoco_viewer/mujoco_viewer.py", line 7, in <module>
    import imageio
ModuleNotFoundError: No module named 'imageio'

This PR adds imageio as a dependency in the setup.py

rohanpsingh commented 2 years ago

Ah, I missed that! Thanks for the PR.