我正在尝试在python中运行基本且非常简单的代码。
from PIL import Image import pytesseract im = Image.open("sample1.jpg") text = pytesseract.image_to_string(im, lang = 'eng') print(text)
看起来就是这样,我实际上已经通过安装程序为Windows安装了tesseract。我是Python的新手,不确定如何继续?
这里的任何指导都将非常有帮助。我尝试重新启动Spyder应用程序,但无济于事。
我看到步骤分散在不同的答案中。根据我最近在Windows上遇到的pytesseract错误的经验,依次编写不同的步骤可以更轻松地解决该错误:
1 。使用Windows安装程序安装tesseract,网址为:https://github.com/UB- Mannheim/tesseract/wiki
2 。请注意安装中的tesseract路径。进行此编辑时的默认安装路径为:C:\Users\USER\AppData\Local\Tesseract- OCR。它可能会更改,因此请检查安装路径。
C:\Users\USER\AppData\Local\Tesseract- OCR
3 。pip install pytesseract
pip install pytesseract
4 。在调用之前,在脚本中设置tesseract路径image_to_string:
image_to_string
pytesseract.pytesseract.tesseract_cmd = r'C:\Users\USER\AppData\Local\Tesseract-OCR\tesseract.exe'