# Update package list and install Tesseract OCR | |
apt-get update | |
apt-get install -y tesseract-ocr | |
# Verify installation | |
tesseract --version | |
# Install necessary Python packages | |
pip install tensorflow | |
pip install opencv-python | |
pip install pytesseract | |
pip install ultralytics | |
pip install matplotlib | |
pip install gradio | |