Commit 04aa2f8d authored by jameskrw's avatar jameskrw
Browse files

updated dependency

parent ca33c360
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -14,18 +14,24 @@ echo "Starting installation process..."
echo "Installing vagen dependencies..."
pip install 'qwen-vl-utils'
pip install 'mathruler'
pip install 'gym'
pip install 'gym-sokoban'
pip install 'matplotlib'
pip install 'gymnasium'
pip install 'flask'


echo "Installing flash-attn with no build isolation..."
pip install flash-attn --no-build-isolation

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]"

echo "Installing Navigation dependencies"
pip install ai2thor==5.0.0
pip install numpy==1.25.1
+0 −19
Original line number Diff line number Diff line
@@ -5,9 +5,6 @@ python vagen/env/server.py --debug
```
### Navigation
```
# Additional dependencies:
pip install ai2thor==5.0.0
pip install numpy==1.25.1

# For headless servers, additional setup is required:
# Install required packages
@@ -17,19 +14,3 @@ apt-get install -y xorg xserver-xorg-core xserver-xorg-video-dummy
# Start X server in a tmux window
python vagen/env/navigation/startx.py 1
```

### FrozenLake
```
# Additional dependencies:
pip install gymnasium
pip install "gymnasium[toy-text]"
```

### SVG
```
# Additional dependencies:
pip install bs4
pip install svgpathtools
pip install cairosvg
pip install flask
```
 No newline at end of file