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

Testing #17

Closed pab47 closed 1 year ago

pab47 commented 1 year ago

I tested the code on python3 on mac (intel) and I had to do 3 changes to get it work

1) remove import imagio (package is not needed and I was not able to install it anyway) 2) line 500 and 533 I had to change is to ==

rohanpsingh commented 1 year ago

Hi @pab47

  1. imageio is in fact needed to capture screenshots (Press T). Looking at the docs, it seems it is supported on macOS
  2. Yes, that should be changed to ==. I just pushed a commit for this.

Let me know if you still face a problem.

pab47 commented 1 year ago

I am unable to install imagio on mac. pip install imagio give me this message ERROR: Could not find a version that satisfies the requirement imagio (from versions: none) ERROR: No matching distribution found for imagio

I don't really need the screenshot functionality. I can find a workaround if needed. Please close this ticket. Thanks!