2

Pytesseract 无法识别。我已经尝试了在线记录的所有修复,包括将 Tesseract-OCR 添加到我的路径变量中,将pytesseract.pytesseract.tesseract_cmd = r'C:\Program Files\Tesseract-OCR\tesseract.exe'命令路径合并到我的脚本中,卸载并重新安装 pytesseract 和 tesseract。

4

1 回答 1

0

在第 23 行 vpnbookpassword = pytesseract.image_to_string(pwdi) 中你提到了pytesseract.image_to_string,但是你导入 from pytesseract import image_to_string了 image_to_string 而不是 pytesseract,所以它找不到 pytesseract。所以写它vpnbookpassword = image_to_string(pwdi)可以解决问题

于 2020-03-06T10:38:44.013 回答