python 2.7 - Error using pytesseract -
i using pytesseract convert images text. installed pytesseract pip command. when run script, shows me error : no module named tesseract
.
these codes :
from tesseract import image_to_string image = image.open('input-nearest.tif') print image_to_string(image)
error :
traceback (most recent call last): file "c:\users\j's magic\desktop\py\new1.py", line 1, in <module> tesseract import image_to_string importerror: no module named tesseract
pil import image import pytesseract tess print tess.image_to_string(image.open('3.png'), lang='tur')
try this
Comments
Post a Comment