如何解决Tesseract Not Found错误,Anaconda?

时间:2020-08-02 08:55:01

标签: python python-tesseract

所以我的conda版本是4.8.3我是tesseract和anaconda的新用户。使用以下命令安装了tesseract:

`conda install -c conda-forge pytesseract`
`conda install -c conda-forge/label/cf202003 pytesseract `

现在,当我尝试运行简单图像以进行ocr代码时,出现以下错误

File "C:\Users\user\Anaconda3\lib\site-packages\pytesseract\pytesseract.py", line 232, in run_tesseract加注TesseractNotFoundError()

TesseractNotFoundError: tesseract is not installed or it's not in your path

1 个答案:

答案 0 :(得分:0)

您看到此错误是因为 PATH 中没有tesseract可执行文件。因此,您必须包括以下行:

pytesseract.pytesseract.tesseract_cmd = r'C:\\Program Files\\Tesseract-OCR\\tesseract.exe'

您可以在pytesseract的Official documentation中看到一个示例。

我写了 default tesseract可执行文件文件夹,但是如果您更改了它,请记住使用<full_path_to_your_tesseract_executable>(如上一链接所述)。