FloorManager / install_and_run.sh
BolyosCsaba
envelop refactor
eac355f
raw
history blame contribute delete
745 Bytes
#!/bin/bash
echo "======================================"
echo "🎀 OFP Floor Manager - Quick Setup"
echo "======================================"
echo ""
# Check if Python is installed
if ! command -v python3 &> /dev/null; then
echo "❌ Python 3 is not installed. Please install Python 3 first."
exit 1
fi
echo "βœ… Python 3 found: $(python3 --version)"
echo ""
# Install all dependencies
echo "πŸ“¦ Installing dependencies from requirements.txt..."
pip install -r requirements.txt
echo ""
echo "======================================"
echo "βœ… Installation Complete!"
echo "======================================"
echo ""
echo "πŸš€ Starting the Floor Manager Test Interface..."
echo ""
# Run the test app
python3 test_app.py