MediScanAI / setup.sh
WANIFAHEEM12's picture
Update setup.sh
6c9b3c2 verified
Raw
History Blame Contribute Delete
246 Bytes
#!/bin/bash
# Install system dependencies
apt-get update
apt-get install -y tesseract-ocr tesseract-ocr-eng poppler-utils
# Upgrade pip
pip install --upgrade pip
# Install Python packages
pip install -r requirements.txt
echo "Setup complete!"