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
Luckily, I solved this one.
At first, I run the command
pip install pytesseract
to install the package.
But I get the error message of 'No such file or directory using pytesser'.
Then I read this link: image_to_string doesn't work in Mac So, just run the following script:
brew link libtiff
brew link libpng
brew link jpeg
brew install tesseract
Worked for me ~