Skip to content

Commit

Permalink
Merge pull request #220 from edbeeching/limit-rllib-version
Browse files Browse the repository at this point in the history
Limit Rllib version
  • Loading branch information
Ivan-267 authored Jan 22, 2025
2 parents f5d12cc + 462116c commit f439635
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,11 @@ jobs:
python -m pip install --upgrade pip wheel==0.38.4
# cpu version of pytorch
pip install .[test]
- name: Clean up dependencies
- name: Install Rllib
run: |
pip uninstall -y stable-baselines3 gymnasium
pip install ray[rllib]
pip install "ray[rllib]<=2.38.0"
pip install onnx==1.16.1
- name: Download examples
run: |
make download_examples
Expand All @@ -102,10 +103,11 @@ jobs:
python -m pip install --upgrade pip wheel==0.38.4
# cpu version of pytorch
pip install .[test]
- name: Clean up dependencies
- name: Install Rllib
run: |
pip uninstall -y stable-baselines3 gymnasium
pip install ray[rllib]
pip install "ray[rllib]<=2.38.0"
pip install onnx==1.16.1
- name: Download examples
run: |
make download_examples
Expand Down
4 changes: 3 additions & 1 deletion docs/TRAINING_MULTIPLE_POLICIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ This is a brief guide on training multiple policies focusing on Rllib specifical

`pip install https://github.com/edbeeching/godot_rl_agents/archive/refs/heads/main.zip` (to get the latest version)

`pip install ray[rllib]`
`pip install ray[rllib]<=2.38.0`

`pip install onnx==1.16.1`

`pip install PettingZoo`

Expand Down

0 comments on commit f439635

Please sign in to comment.