File size: 985 Bytes
67ba414
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Scripts README

## Release Environment Setup

Use the setup flow below for the validated RAGEN environment.

This setup has been validated on `H100`, `H200`, and `B200`, and supports:
- `bandit`
- `sokoban`
- `frozenlake`
- `metamathqa`
- `countdown`
- `deepcoder`

## Requirements

- `CUDA >= 12.8`

### 1. Clone the repository

```bash
git clone https://github.com/CHIGUI0/RAGEN.git
cd RAGEN
```

### 2. Create and activate the conda environment

```bash
conda create -n ragen python=3.12 -y
conda activate ragen
```

### 3. Run the environment setup script

```bash
bash scripts/setup_ragen.sh
```

If you want to install the `search` environment, use the following command:

```bash
bash scripts/setup_ragen.sh --with-search
```

This release setup does not install `webshop`. If you need `webshop`, use its separate setup flow instead of `setup_ragen.sh`.

If you want to run WebShop experiments, see [docs/experiment_webshop_release.md](../docs/experiment_webshop_release.md).