我正在使用 pytesseract 将图像转换为文本。我使用 pip 命令成功安装了 pytesseract。但是当我运行脚本时,它显示错误:No module named Tesseract
。
这些是我的代码:
from tesseract import image_to_string
image = Image.open('input-NEAREST.tif')
print image_to_string(image)
错误 :
Traceback (most recent call last):
File "C:\Users\J's MAgic\Desktop\py\new1.py", line 1, in <module>
from tesseract import image_to_string
ImportError: No module named tesseract