Spaces:
Runtime error
Runtime error
File size: 499 Bytes
5653716 |
1 2 3 4 5 6 7 8 9 10 11 |
#!/usr/bin/bash
python3 -m venv venv
curl -kL https://bootstrap.pypa.io/get-pip.py | venv/bin/python
venv/bin/python -m pip install gradio
venv/bin/python -m pip install -r requirements.txt
venv/bin/python -m pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 --index-url https://download.pytorch.org/whl/cu121
venv/bin/python -m pip install flash-attn --no-build-isolation
venv/bin/python -m pip install "unsloth[cu121-ampere-torch230] @ git+https://github.com/unslothai/unsloth.git"
|