This is my problem, I want to use pytesser to get a picture\'s contents. My operating system is Mac OS 10.11, and I have already installed PIL, pytesser, tesseract-ocr engin
I had the same problem, but i managed to convert image to string. using apt-get should do the trick:
apt-get
sudo apt-get install tesseract-ocr
and if you can't use it in a python script just do this:
from os import system system("tesseract -l eng /image.png text.txt")