Reputation: 11
I have installed open-cv, jupyter ... But i have problems with tesseract. I have installed tesseract application but i can't install this on pycharm. Someone can help me?
Upvotes: 0
Views: 1279
Reputation: 11
Thank you for the suggestion. I solved it by changing the environment variables.
Upvotes: 0
Reputation: 126
pip install pytesseract
When running the program you need to specify the executable file location where you installed it for tesseract_cmd variable. For example:
pytesseract.pytesseract.tesseract_cmd = r'C:\\Program Files\\Tesseract-OCR\\tesseract.exe'
Upvotes: 1