Michael
Michael

Reputation: 605

[python]has no attribute 'TessBaseAPI'

I got an error when I compiled code blow:

import tessercat
api = tesseract.TessBaseAPI()

The error is:

AttributeError:'module' object has no attribute 'TessBaseAPI'

I have already installed tesseract via pip. The Python version is 2.7 Windows 32bit.

Upvotes: 5

Views: 3007

Answers (2)

Emmy R
Emmy R

Reputation: 132

Make sure that you don't need to import a sublcass ie from tesseract import XYZ

Also - not sure if this was a typo but your import module is misspelled.

Upvotes: 0

azri.dev
azri.dev

Reputation: 311

I think you are trying to use python wrapper of tesseract (python-tesseract). Make sure you are using the right version. You can check this one: python-tesseract-0.7.6.win32-py2.7.exe

Upvotes: 1

Related Questions