0

我通过Linux终端安装了Tesseract OCR,但是当我尝试在Python中导入它时,出现了错误:

/usr/bin/python2.7 /home/web/Documents/pnt/ocr.py
Traceback(最近一次调用最后一次):
文件“/home/web/Documents/pnt/ocr.py”,第 1 行,在
import tesseract
ImportError:没有名为 tesseract 的模块

4

1 回答 1

0

检查您是否在系统上正确安装了 tesseract-ocr。首先尝试输入您的命令行:

tesseract

和/或

whereis tesseract-ocr

现在对于下一步,您需要一个 tesserect 的包装器,例如pytesseractpython-tesseract,以便在 python 中导入和使用 ocr。

于 2015-08-07T10:13:09.663 回答