We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Steps to reproduce:
from gym.envs import make @ray.remote([], []) def f(): env = make("Pong-ram-v0") return f()
It fails with the following error message:
PicklingError: Cannot pickle files that are not opened for reading: a
This on the other hand works:
import gym @ray.remote([], []) def f(): env = gym.envs.make("Pong-ram-v0") return f()
The text was updated successfully, but these errors were encountered:
Docker Updates (ray-project#308)
ad4b03b
* new path for python build * add flag * build tar using git archive * no exit from start_ray.sh * update Docker instructions * update build docker script * add git revision * fix typo * bug fixes and clarifications * mend * add objectmanager ports to docker instructions * rewording * Small updates to documentation.
No branches or pull requests
Steps to reproduce:
It fails with the following error message:
This on the other hand works:
The text was updated successfully, but these errors were encountered: