requirements_rllib.txt 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. -r requirements_dl.txt
  2. # Environment adapters.
  3. # ---------------------
  4. # Atari
  5. # TODO(sven): Still needed for Atari (need to be wrapped by gymnasium as it does NOT support Atari yet)
  6. gym==0.26.2
  7. gymnasium[atari,mujoco]==0.26.3
  8. # For testing MuJoCo envs with gymnasium.
  9. mujoco-py<2.2,>=2.1
  10. # Kaggle envs.
  11. kaggle_environments==1.7.11
  12. # Unity3D testing
  13. # TODO(sven): Add this back to requirements_rllib.txt once mlagents no longer pins torch<1.9.0 version.
  14. #mlagents==0.28.0
  15. mlagents_envs==0.28.0
  16. # For tests on PettingZoo's multi-agent envs.
  17. pettingzoo==1.22.1; python_version >= '3.7'
  18. # When installing pettingzoo, chess is missing, even though its a dependancy
  19. # TODO: remove if a future pettingzoo and/or ray version fixes this dependancy issue
  20. chess==1.7.0
  21. pymunk==6.2.1
  22. supersuit==3.7.0; python_version >= '3.7'
  23. # For tests on minigrid.
  24. minigrid==2.1.1
  25. # For tests on RecSim and Kaggle envs.
  26. # Explicitly depends on `tensorflow` and doesn't accept `tensorflow-macos`
  27. recsim==0.2.4; sys_platform != 'darwin' or platform_machine != 'arm64'
  28. tensorflow_estimator==2.11.0
  29. # DeepMind's OpenSpiel
  30. open-spiel==1.2
  31. # Other.
  32. # ------
  33. # For MAML on PyTorch.
  34. higher==0.2.1
  35. # For auto-generating an env-rendering Window.
  36. pyglet==1.5.15
  37. imageio-ffmpeg==0.4.5
  38. # ONNX
  39. # ONNX 1.13.0 depends on protobuf > 3.20, conflicting with tensorflow.
  40. # ONNX 1.12.0 is not published for mac arm64, so we exclude it for now.
  41. onnx==1.12.0; sys_platform != 'darwin' or platform_machine != 'arm64'
  42. onnxruntime==1.14.1; sys_platform != 'darwin' or platform_machine != 'arm64'
  43. tf2onnx==1.13.0; sys_platform != 'darwin' or platform_machine != 'arm64'
  44. rich==12.0.1
  45. # Msgpack checkpoint stuff.
  46. msgpack
  47. msgpack_numpy