forked from nikopueringer/CorridorKey
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstall_VideoMaMa_Linux_Mac.sh
More file actions
32 lines (26 loc) · 1.09 KB
/
Install_VideoMaMa_Linux_Mac.sh
File metadata and controls
32 lines (26 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env bash
cd "$(dirname "$0")"
# Set the Terminal window title
echo -n -e "\033]0;VideoMaMa Setup Wizard\007"
echo "==================================================="
echo " VideoMaMa (AlphaHint Generator) - Auto-Installer"
echo "==================================================="
echo ""
# Check that uv sync has been run (the .venv directory should exist)
# Note: I changed the name in the error message to match your Mac installer!
if [ ! -d ".venv" ]; then
echo "[ERROR] Project environment not found."
echo "Please run Install_CorridorKey_Linux_Mac.sh first!"
read -p "Press [Enter] to exit..."
exit 1
fi
# 1. Download Weights
echo "[1/1] Downloading VideoMaMa Model Weights..."
mkdir -p "VideoMaMaInferenceModule/checkpoints"
echo "Downloading VideoMaMa weights from HuggingFace..."
uv run hf download SammyLim/VideoMaMa --local-dir "VideoMaMaInferenceModule/checkpoints"
echo ""
echo "==================================================="
echo " VideoMaMa Setup Complete!"
echo "==================================================="
read -p "Press [Enter] to close..."