我在使用pytesseract时遇到奇怪的错误,请有人帮忙。我在jupyter笔记本中使用python 3.5,这是我尝试的方法:
pip install pillow
pip install pytesseract
我可以在v3.5环境中看到相关文件夹,然后在笔记本中尝试:
from PIL import Image
import pytesseract
print(pytesseract.image_to_string(Image.open("sample01.png")))
我已经将sample01.png保存在与笔记本相同的文件夹中。但是上面的行引发了:
FileNotFoundError: [WinError 2] The system cannot find the file specified
During handling of the above exception, another exception occurred:
TesseractNotFoundError Traceback (most recent call last)
<ipython-input-2-b37d854f093a> in <module>()
----> 1 print(pytesseract.image_to_string(Image.open("sample01.png")))
感谢任何帮助!
PS:解决方案是先从其github帐户安装tesseract,然后按照链接的问题接受公认的答案。