Hi I am new to python and tesseract. I am using anaconda distribution and trying to use pytesseract-ocr when I try to get the data from image it gives me following error:
tesseract imageSample1.jpg test.txt digits
// output
Tesseract Open Source OCR Engine v3.04.01 with Leptonica
Error opening data file /anaconda/envs/_build/share/tessdata/eng.traineddata
Please make sure the TESSDATA_PREFIX environment variable is set to the parent directory of your "tessdata" directory.
Failed loading language 'eng'
Tesseract couldn't load any languages!
Could not initialize tesseract.
So first this there is no such /anaconda/envs/_build/share/tessdata/
directory. I have anaconda3 folder. I downloaded end.traindata from git. but not sure where to put that data. Am I doing some thing wrong. Need some help. thank you.
Have you tried executing the command : tesseract from your command window , You should get an output like this :
If not then you should install any version of tesseract on your machine tesseract download
Note : for pytesseract to work you need to have tessearct installed into system.
Hope this helps :)