Spaces:
Running
on
L40S
Running
on
L40S
File size: 206 Bytes
af14831 |
1 2 3 4 5 6 7 8 9 |
#!/bin/bash
set -e
# Install flash-attn with no-build-isolation
pip install flash-attn==2.7.3 --no-build-isolation
# Uninstall apex if it exists (as in your original script)
pip uninstall apex -y || true
|