How to install Tesseract in WSL
Hi, In this post, we will see how to use tesseract ocr in wsl and use.
Install Tesseract OCR:
sudo apt install tesseract-ocr -y
Install Language packes:
Since my project needs both English and Tamil support:
# English (usually included by default, but explicit is safer)
sudo apt install tesseract-ocr-eng -y
# Tamil language pack
sudo apt install tesseract-ocr-tam -y
Verify Installation
Comments
Post a Comment