Guest User

Untitled

a guest
Apr 23rd, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. import pytesseract
  2.  
  3. from PIL import Image
  4.  
  5. im =Image.open("C:\Users\stan\Desktop\sample.jpg")
  6. text = pytesseract.image_to_string(im, lang ='eng')
  7. print(text)
  8.  
  9. Traceback (most recent call last):
  10. File "C:UsersstanMyPythonScriptstess11.py", line 1, in <module>
  11. import pytesseract
  12. ModuleNotFoundError: No module named 'pytesseract'
Add Comment
Please, Sign In to add comment