Skip to content

Commit 1af2881

Browse files
author
Kyle
committed
update install instructions, update solver judge notebook
1 parent fca5e95 commit 1af2881

File tree

3 files changed

+96
-195
lines changed

3 files changed

+96
-195
lines changed

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,21 +45,18 @@ rLLM is an open-source framework for post-training language agents via reinforce
4545
### Installation
4646

4747
```bash
48-
# Clone the repository and switch to v0.2
48+
# Clone the repository
4949
git clone --recurse-submodules https://github.com/rllm-org/rllm.git
5050
cd rllm
5151

52-
# Make sure submodules match v0.2
53-
git submodule update --init --recursive
54-
5552
# Create a conda environment
56-
conda create -n rllm python=3.11 -y
53+
conda create -n rllm python=3.10 -y
5754
conda activate rllm
5855

5956
# Install verl
6057
bash scripts/install_verl.sh
6158

62-
# Install rllm
59+
# Install rLLM
6360
pip install -e .
6461
```
6562

docs/getting-started/installation.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,15 @@ Before installing rLLM, ensure you have the following:
1414
rLLM uses [verl](https://github.com/volcengine/verl) as its training backend. Follow these steps to install rLLM and verl:
1515

1616
```bash
17-
# Clone the repository and switch to v0.2
17+
# Clone the repository
1818
git clone --recurse-submodules https://github.com/rllm-org/rllm.git
1919
cd rllm
20-
git switch v0.2
21-
22-
# Make sure submodules match v0.2
23-
git submodule update --init --recursive
2420

2521
# Create a conda environment
2622
conda create -n rllm python=3.10 -y
2723
conda activate rllm
2824

29-
# Install verl (version pinned by v0.2 branch)
25+
# Install verl
3026
bash scripts/install_verl.sh
3127

3228
# Install rLLM

0 commit comments

Comments
 (0)