我想在我的python脚本中使用 image_to_string 来从图像中读取数字。
我从pytesser导入所有内容
from pytesser import *
我读了this question和
我安装了 pytesseract
pip install pytesseract
和 tesseract-ocr
apt-get install tesseract-ocr
但我已经这个错误了!
ImportError: No module named pytesser
我的安装有什么问题?
答案 0 :(得分:2)
您是否尝试从
调整import语句?from pytesser import *
到
from pytesseract import *