我通过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 的模块
我通过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 的模块
检查您是否在系统上正确安装了 tesseract-ocr。首先尝试输入您的命令行:
tesseract
和/或
whereis tesseract-ocr
现在对于下一步,您需要一个 tesserect 的包装器,例如pytesseract或python-tesseract,以便在 python 中导入和使用 ocr。