modelbeast/scripts/install_acestep.sh
type-two 12a8cf1fd2 music_local (ACE-Step) + motion_local (MoMask) operators with install scripts
install_momask.sh encodes the compat patches: numpy<2 + umath_tests shim,
matplotlib axes-clearing fix, np.float alias wrapper (mb_gen.py)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-17 19:42:14 +10:00

11 lines
448 B
Bash
Executable File

#!/usr/bin/env bash
# Install ACE-Step (text → music) into vendor/acestep + venvs/acestep.
# Weights (~7GB) auto-download from HF on first generation.
set -euo pipefail
cd "$(dirname "$0")/.."
[ -d vendor/acestep ] || git clone -q https://github.com/ace-step/ACE-Step.git vendor/acestep
uv venv venvs/acestep --python 3.11 2>/dev/null || true
cd vendor/acestep
uv pip install --python ../../venvs/acestep/bin/python -e .
echo "acestep installed"