mirror of https://github.com/inclusionAI/AReaL
24 lines
744 B
Bash
24 lines
744 B
Bash
#!/bin/bash
|
|
# basic dependencies
|
|
pip install -U pip
|
|
pip uninstall deepspeed flash-attn pynvml cugraph-dgl dask-cuda cugraph-service-server raft-dask cugraph cuml cugraph-pyg -y
|
|
pip install "sglang[all]==0.4.6.post4"
|
|
pip install megatron-core==0.11.0 nvidia-ml-py
|
|
pip install git+https://github.com/garrett4wade/cugae --no-build-isolation --verbose
|
|
pip install flash-attn --no-build-isolation
|
|
|
|
# Package used for calculating math reward
|
|
pip install -e evaluation/latex2sympy
|
|
|
|
# Install an editable sglang
|
|
rm -rf ./sglang
|
|
git clone -b v0.4.6.post4 https://github.com/sgl-project/sglang
|
|
AREAL_PATH=$PWD
|
|
cd sglang
|
|
git apply ../patch/sglang/v0.4.6.post4.patch
|
|
pip install -e "python[all]" --no-deps
|
|
cd $AREAL_PATH
|
|
|
|
# Install AReaL
|
|
pip install -e .
|