-
Notifications
You must be signed in to change notification settings - Fork 14
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
gym 0.10.8r1 #3
Comments
Everything* works fine when renaming '0.10.8r1' into '0.10.8' (line 39 and 43 in setup.py). Guess they just renamed the release. *Tested on the CartPole example. |
Hi @lmzintgraf, thanks for the update. Those warnings you're seeing are actually expected, since we're using Gym version 0.10.8 pulled from PyPI should work fine too, though it may not have the rendering fixes in the specific commit specified in |
Hi @cpacker. Thanks for getting back to me in such detail! I wasn't familiar with On my side the dependency_links were not working as expected, see this output:
Aside from the deprecation warnings, |
@lmzintgraf thanks for the logs, I'll have to look into this further. In the meantime, if you have any issues using the latest versions of Gym and Baselines with our code, you can use the specific commits we tested with (ie the versions linked in # inside the same virtualenv you setup
pip3 uninstall gym baselines
git clone https://github.com/openai/gym.git
cd gym
git checkout 094e6b8e6a102644667d53d9dac6f2245bf80c6f
pip3 install -e .
cd ..
git clone https://github.com/openai/baselines.git
cd baselines
git checkout 2b0283b9db18c768f8e9fa29fbedc5e48499acc6
pip3 install -e .
cd ..
# pip3 list should now show local installs (or use the linked docker container) |
Great, thank you so much for the help and pointers @cpacker ! |
While trying to install the requirements, I first get this message
Requested gym==0.10.8r1 from git+https://github.com/openai/gym.git@094e6b8e6a102644667d53d9dac6f2245bf80c6f#egg=gym-0.10.8r1 (from sunblaze-envs==0.1.0), but installing version 0.10.8
and later I get the error that it failed to build the wheel for Box2D because
sunblaze-envs 0.1.0 has requirement gym==0.10.8r1, but you'll have gym 0.10.8 which is incompatible.
Could you help me out with this?
The text was updated successfully, but these errors were encountered: