Spaces:
Sleeping
Sleeping
File size: 2,115 Bytes
c7e9899 | 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | #!/bin/bash
# Setup script for Template Matching Demo
# Colors for output
GREEN='\033[0;32m'
BLUE='\033[0;34m'
YELLOW='\033[1;33m'
RED='\033[0;31m'
NC='\033[0m' # No Color
echo -e "${BLUE}π§ Setting up Template Matching Demo...${NC}"
echo ""
# Check Python version
echo -e "${BLUE}π Checking Python version...${NC}"
python_version=$(python3 --version 2>&1 | awk '{print $2}')
required_version="3.11.9"
if python3 -c "import sys; exit(0 if sys.version_info >= (3, 11) else 1)"; then
echo -e "${GREEN}β
Python ${python_version} is installed${NC}"
else
echo -e "${RED}β Python 3.11+ is required${NC}"
exit 1
fi
# Check if uv is installed
echo -e "${BLUE}π¦ Checking for uv package manager...${NC}"
if ! command -v uv &> /dev/null; then
echo -e "${YELLOW}β οΈ uv is not installed${NC}"
echo -e "${BLUE}Installing uv...${NC}"
curl -LsSf https://astral.sh/uv/install.sh | sh
# Source the shell configuration to make uv available
if [ -f "$HOME/.cargo/env" ]; then
source "$HOME/.cargo/env"
fi
if command -v uv &> /dev/null; then
echo -e "${GREEN}β
uv installed successfully${NC}"
else
echo -e "${RED}β Failed to install uv. Please install manually:${NC}"
echo " curl -LsSf https://astral.sh/uv/install.sh | sh"
exit 1
fi
else
echo -e "${GREEN}β
uv is already installed${NC}"
fi
# Sync dependencies
echo ""
echo -e "${BLUE}π₯ Installing dependencies...${NC}"
uv sync --no-build-isolation
if [ $? -eq 0 ]; then
echo -e "${GREEN}β
Dependencies installed successfully${NC}"
else
echo -e "${RED}β Failed to install dependencies${NC}"
exit 1
fi
# Make scripts executable
echo ""
echo -e "${BLUE}π Setting script permissions...${NC}"
chmod +x run_local.sh deploy.sh setup.sh
echo ""
echo -e "${GREEN}β
Setup complete!${NC}"
echo ""
echo -e "${BLUE}Next steps:${NC}"
echo " 1. Run locally: ${GREEN}./run_local.sh${NC}"
echo " 2. Deploy: ${GREEN}./deploy.sh${NC}"
echo ""
echo -e "${YELLOW}π‘ Tip: You can also use 'make run' or 'make deploy' if you prefer${NC}"
|