Didier's picture
Update setup.sh
33b7638 verified
raw
history blame
383 Bytes
#!/bin/bash
# Install Tesseract OCR
apt-get update && apt-get install -y tesseract-ocr
# Verify installation
tesseract --version
chmod +x setup.sh
#!/bin/bash
# Update package list
apt-get update
# Install Tesseract OCR
apt-get install -y tesseract-ocr
# Install Poppler for PDF processing
apt-get install -y poppler-utils
# Verify installation
tesseract --version
pdfinfo -v