How do I resolve a TesseractNotFoundError?

前端 未结 22 2125
情话喂你
情话喂你 2020-11-28 05:14

I am trying to use pytesseract in Python but I always end up with the following error:

    raise TesseractNotFoundError()
pytesseract.pytesseract.TesseractNo         


        
22条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-28 05:34

    Most likely you have different versions of Python installed, ensure that the installed Tesseract is on the same Python version.

    which pip3 shows you the path to the pip3 installation and which python3 shows the corresponding path to the Python installation.

    Ensure that these two are the same.

提交回复
热议问题