upadhyaysuraj's picture
Update setup.sh
f93866d verified
raw
history blame contribute delete
328 Bytes
#!/bin/bash
# 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