1 | TesseractNotFoundError: tesseract is not installed or it's not in your path |
To get around this problem, install tesseract manually from
and before calling any API of pytesseract we call
1 | pytesseract.pytesseract.tesseract_cmd = r "C:\Program Files\Tesseract-OCR\tesseract.exe" |
we run
1 2 3 | pytesseract.pytesseract.tesseract_cmd = r "C:\Program Files\Tesseract-OCR\tesseract.exe" text = pytesseract.image_to_string(image) |
No comments:
Post a Comment