File size: 305 Bytes
ccb7bbe |
1 2 3 4 5 6 7 8 |
#!/bin/bash
# conda create -y --name sst python=3.10.14
# source ~/anaconda3/etc/profile.d/conda.sh
# conda activate sst
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
(cd segment-anything-2 && pip install -e .)
pip install -r requirements.txt --no-dependencies |