-
Notifications
You must be signed in to change notification settings - Fork 675
Expand file tree
/
Copy pathInstall_GVM_Linux_Mac.sh
More file actions
executable file
·32 lines (26 loc) · 1.05 KB
/
Install_GVM_Linux_Mac.sh
File metadata and controls
executable file
·32 lines (26 loc) · 1.05 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;GVM Setup Wizard\007"
echo "==================================================="
echo " GVM (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 GVM Model Weights (WARNING: Massive 80GB+ Download)..."
mkdir -p "gvm_core/weights"
echo "Downloading GVM weights from HuggingFace..."
uv run hf download geyongtao/gvm --local-dir "gvm_core/weights"
echo ""
echo "==================================================="
echo " GVM Setup Complete!"
echo "==================================================="
read -p "Press [Enter] to close..."