ImportError:Ubuntu中没有名为pytesseract的模块

时间:2019-03-14 12:22:56

标签: python python-3.x pip

我通过pillow安装了两个库pytesseractpip3

为了做ocr
当我运行这段代码

import Image
from pytesseract import image_to_string

img = Image.open('mz.png')

print(image_to_string(img))

我遇到ImportError: No module named pytesseract错误  当我再次安装pytesseract时说requirement satisfied

这有什么问题

2 个答案:

答案 0 :(得分:0)

您可能已安装了多个Python版本,并尝试与另一个文件一起运行文件,就像您已将软件包安装到其中一样

答案 1 :(得分:0)

使用sudo apt-get install tesseract-ocr尝试并安装tesseract ocr

然后使用sudo pip3 install pytesseract

这2行应该可以解决您的问题。