SST / install.sh
Daniel-F's picture
bug fix
4c6b11a
raw
history blame contribute delete
306 Bytes
#!/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