File size: 306 Bytes
ccb7bbe 4c6b11a ccb7bbe e72f5dd |
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_manual.txt --no-dependencies |