1

I want to use image_to_string in my python script for reading numbers from image. i import everything from pytesser from pytesser import *

i read this question and

i installed pytesseract

 pip install pytesseract

and tesseract-ocr

apt-get install tesseract-ocr

but i have already this error!

ImportError: No module named pytesser

What's wrong with my installation?

parik
  • 2,160
  • 12
  • 37
  • 64

1 Answers1

2

Did you try adjusting the import statement from

from pytesser import *

to

from pytesseract import *
omu_negru
  • 4,502
  • 4
  • 23
  • 38