I’m trying to install RLLib on Ubuntu 18.04 using the following: pip3 install “ray[rllib]”
But that generates the following error:
Collecting ale-py~=0.7.1; extra == “atari” (from gym[atari]; extra == “rllib”->ray[rllib])
Could not find a version that satisfies the requirement ale-py~=0.7.1; extra == “atari” (from gym[atari]; extra == “rllib”->ray[rllib]) (from versions: )
No matching distribution found for ale-py~=0.7.1; extra == “atari” (from gym[atari]; extra == “rllib”->ray[rllib])
Is there a way to install RLLib without the extra gym[atari] dependencies or is there another workaround?
Are you generating this error from a brand new virtual environment? If not I would recommend making a new one. I think the default RLlib installation (pip3 install “ray[rllib]”) shouldn’t be installing the atari dependencies in the first place.
'gym[atari]' is not part of our requirements today and I install it manually after installing ray every time.
Maybe it is for the release that is available for your environment? Does it “still” this? Have you tried with a fresh environment outside of Cloud9? Because a standard 18.04 should work I think.