Spaces:
Sleeping
Sleeping
| 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 | |