I am currently working on optimal character recognition project using python 2.7,open computer vision in windows.To accomplish this task i came to know that it can be done by using tesseract (software).But, it cannot be installed on windows. I searched a lot but i could not get the solution. Can any one tell me is there any way of installing it on windows ?or can it be done without using it?
Tesseract installation in windows
117.1k Views Asked by zeeshan AtThere are 3 best solutions below

Simple steps for tesseract installation in windows.
Download tesseract exe from https://github.com/UB-Mannheim/tesseract/wiki.
Install this exe in
C:\Program Files (x86)\Tesseract-OCR
Open virtual machine command prompt in windows or anaconda prompt.
Run
pip install pytesseract
To test if tesseract is installed type in python prompt:
import pytesseract
print(pytesseract)

To accomplish OCR with Python on Windows, you will need Python and OpenCV which you already have, as well as Tesseract and the Pytesseract Python package.
To install Tesseract OCR for Windows:
- Run the installer(find 2021) from UB Mannheim
- Configure your installation (choose installation path and language data to include)
- Add Tesseract OCR to your environment variables
To install and use Pytesseract on Windows:
- Simply run
pip install pytesseract
- You will also need to install Pillow with
pip install Pillow
to use Pytesseract. Import it in your Python document like sofrom PIL import Image
. - You will need to add the following line in your code in order to be able to call pytesseract on your machine:
pytesseract.pytesseract.tesseract_cmd = 'C:\\Program Files\\Tesseract-OCR\\tesseract.exe'
I've given a detailed walkthrough of how to install Tesseract OCR for Windows here if you would like further guidance.
UB Mannheim provide pre-built binaries for the latest versions of
tesseract
.From
tesseract
Github wiki.