-
Notifications
You must be signed in to change notification settings - Fork 1.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
[Bug] pip install fails on atari-py #779
Comments
Using the current master from git seems to work (with some fancy egg info): |
Hmm this might simply be because stable-baselines3 pypi package has not been updated yet (as in: new release has not been made since gym update has been done). @araffin sounds like pretty serious issue, should probably do it asap when you have time? |
Hello,
I couldn't reproduce your error following the getting started colab... do you have the build essential package installed? (required for any compilation)
SB3 1.4.0 requires gym < 0.20, so you should install gym 0.19 if you want to install it manually. And in fact, you need to install atari py manually because the correct version was not specified if I recall. gym > 0.20 doesn't use atari py anymore... |
@araffin this was using Python installed on OS X, not Colab. I just reproduced with the instructions above on my work machine. This seems like an issue with PyPi propagation; an older version exists in PyPi but installing directly from Github gets the newest version?
|
which version are you talking about? SB3 version? |
I don't know why |
could you try |
Yup!
|
As we cannot update SB3 1.4.0 pypi package and that the new version works, I guess the issue is solved? |
If anyone tries a simple |
Only on Mac OS with your setup when using the
I would like to wait a bit before doing a new release, mostly to catch potential bugs and check full compatibility with the newest gym version (#780 requires additional work). |
Hello. I'm not sure if the stable-baselines3 fully supports M1 mac, but I also failed with |
stable-baselines3 is a python only package, so as long as you manage to install pytorch, you can use SB3. The issue is with atari-py from the |
@araffin I'm on an Intel chip. I think the core problem might be the PyPi artifact has a dependency graph that points to a version of |
🐛 Bug
Fresh install of
extra
frompip
fails onatari-py
.UPDATE: Using the current master from git seems to work:
pip install git+https://github.com/DLR-RM/stable-baselines3#egg=stable-baselines3[extra]
To Reproduce
On a fresh install:
pip install 'stable-baselines3[extra]'
produces the following error:If I try to install gym manually, based on this line, I get the following error:
Expected behavior
Would love to see
Successfully installed
### System Info
Additional context
Checklist
The text was updated successfully, but these errors were encountered: