danijar / crafter

Benchmarking the Spectrum of Agent Capabilities
https://danijar.com/crafter
MIT License
373 stars 61 forks source link

ruamel.yaml version #20

Closed MichaelTMatthews closed 10 months ago

MichaelTMatthews commented 10 months ago

The newest version of ruamel.yaml has removed the safe_load function used by crafter, causing the following error when trying to run through the gui:

AttributeError: 
"safe_load()" has been removed, use

  yaml = YAML(typ='safe', pure=True)
  yaml.load(...)

The can be fixed most easily by running pip install "ruamel.yaml<0.18.0"