Importerror: No Module Named Pytesseract

ImportError: No module named pytesseract

Python import errors usually boils down to one of those three cases (whether is is modules you developed; or modules distributed as packages):

  1. You did no install the required package. Googling pytesseracttells me its an OCR that is distributed and installable using Python package manager tool pip by running pip install pytesseract in your favorite shell.

  2. You did install the package, but is is not in your python path.

  3. (Less often) You did install the package, and it is in your python path, but you used a name already in user by Python, and the two are conflicting.

In your case, I strongly think this is the first one. Case 2. and 3. can be assessed by calling python -v your_script.pyas described in this answer.

No module named pytesseract error

See after installing pytesseract ,using

<cmd>C:\> pip install pytesseract

Try :

import pytesseract

If above is not working then it has do something with the installation ,
Check if pytesseract folder is available under "\Python27\Lib\site-packages" ,

Try the above command from site packages, Hope this helps ,
Else there is something wrong with installation .



Related Topics



Leave a reply



Submit