CoolFace
Modelpublic

eightyonegens/joycaption-batch-webui

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes
install_linux.sh12 linesDownload Raw Back to root
1#!/usr/bin/env bash2# One-time setup: creates a venv and installs dependencies (CUDA 12.4 wheels).3set -e4cd "$(dirname "$0")"5python3 -m venv venv6source venv/bin/activate7python -m pip install --upgrade pip8pip install torch==2.6.0 torchvision==0.21.0 --index-url https://download.pytorch.org/whl/cu1249pip install -r requirements.txt10echo11echo "Done. Run: ./start_linux.sh   (add --nf4 for ~7GB VRAM mode)"12