(Python) Windows 中的 Tesseract 安装问题

问题描述

我已经阅读了一些关于此的其他答案,但我仍然被卡住了。我想我在做一些愚蠢的事情,但这不起作用:

import PyTesseract
from PIL import Image

def tryTesseract(u):
    return(PyTesseract.image_to_string(Image.open(u)))


loc = 'C:\\Python\\Lineups\\558.png'

print(PyTesseract)
print(tryTesseract(loc))

第一行打印:

init.py'>

但是第二个打印了几行错误并最终导致:

PyTesseract.PyTesseract.TesseractNotFoundError: tesseract 未安装或不在您的 PATH 中。有关详细信息,请参阅自述文件

如果第一行有效,这看起来很奇怪。我相信我已将其正确添加到路径中,并且已正确安装,如下图所示:

CMD screenshot

完整的错误信息:

Python error

针对令人兴奋的新错误进行了编辑。我遵循了 user3250052 的建议,现在出现了一个错误(此处为 Python 窗口顶部的 CMD 窗口:)

New error

from PIL import Image

def tryTesseract(u):
    return(PyTesseract.image_to_string(Image.open(u)))


loc = os.path.join('C','Python','Lineups','558.png')
PyTesseract.tesseract_cmd = r'C:\Program Files\Tesseract-OCR'

print(PyTesseract)
print(tryTesseract(loc))```

解决方法

这是一个文件不喜欢的错误。 试试

loc = os.path.join('C','Python','Lineups','558.png')

您可能还需要

pytesseract.tesseract_cmdloc = r'<full_path_to_your_tesseract_executable>'