File size: 836 Bytes
fcc38f9 | 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 | #!/bin/bash
set -e
echo "Starting installation process..."
# echo "Initializing git submodules..."
# git submodule update --init
# echo "Installing verl package..."
# cd verl
# pip install -e .
# cd ../
echo "Installing vagen dependencies..."
pip install 'qwen-vl-utils'
pip install 'mathruler'
pip install 'matplotlib'
pip install 'flask'
echo "Installing flash-attn with no build isolation..."
# pip install flash-attn==2.7.4.post1
echo "Installing vagen package..."
pip install -e .
echo "Installing Sokoban dependencies"
pip install 'gym'
pip install 'gym-sokoban'
echo "Installing Frozenlake dependencies"
pip install 'gymnasium'
pip install "gymnasium[toy-text]"
pip install together # together ai api for process reward
echo "Installation complete, to install dependencies for other environments, refer to env/readme"
|