-
Notifications
You must be signed in to change notification settings - Fork 8.7k
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
Yet another "Building wheel for mujoco-py (setup.py) ... error" #1883
Comments
This appears to be very related to: which is also still open/unresolved... |
Found the issue... the following note under the "What's New" section
Validated by the following changelist: As a work around, clone gym and modify setup.py to allow for 2.0 and install from there... |
So we should use mujoco 1.5 in future? That's quiet strange.. We use for mujoco 2.0 for years... We don't what exactly the baseline performance in previous papers when we keep changing version of gym / mujoco / mujoco-py.. By the way, in the README of mujoco-py they still recommend using mujoco 2.0, so that's mean the requirement of gym[mujoco] is different from mujoco-py ?? |
gym used to support both mujoco-py 2.0 and 1.5, but some users found issues with the upgrade: #1541 We have downgraded to only supporting 1.5 until results with mujoco-py 2.0 are verified to be the same. Reproducibility of results is difficult because new versions are constantly released, so it would be nice if pinning the version of gym that you use for your experiments was sufficient, but that does not appear to be the case if we support both mujoco 1.5 and 2.0 at the same time. You can workaround this by overriding setup.py, but please be aware that at least the issue I linked above exists. |
PR #2762 is about to be merged, introducing V4 MuJoCo environments using new bindings and a dramatically newer version of the engine. If this issue still persists with the V4 ones, please create a new issue for it. |
All,
There are a number of "Building wheel for mujoco-py (setup.py) ... error" postings but none have helped me resolve my problem. I believe that I have followed the directions from,
https://spinningup.openai.com/en/latest/user/installation.html
and,
https://github.com/openai/mujoco-py
accurately... Here is the full error,
You'll notice that it's looking for Mujoco 1.5... I did have an old version of Mujoco 1.5 on my machine but I replaced it with Mujoco 2.0. I also updated my mjkey.txt for the 2.0 version,
And, the basic Mujoco 2.0 test passes,
I also have my LD_LIBRARY_PATH pointing to mujoco200. Here is a subset of my environement variables,
I'm on the following system,
and finally, here are the installed packages of my conda python 3.6 virtual environment,
I would greatly appreciate any insight as to why I get the error above when executing the prescribed
pip install 'gym[mujoco,robotics]'
command.Thank you.
The text was updated successfully, but these errors were encountered: