如何在 Debian 上安装 pytesser?

How to install pytesser on Debian?

我想在我的 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

我的安装有什么问题?

您是否尝试调整来自

的导入语句
from pytesser import *

from pytesseract import *