我通过pillow
安装了两个库pytesseract
和pip3
为了做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
这有什么问题
答案 0 :(得分:0)
您可能已安装了多个Python版本,并尝试与另一个文件一起运行文件,就像您已将软件包安装到其中一样
答案 1 :(得分:0)
使用sudo apt-get install tesseract-ocr
尝试并安装tesseract ocr
然后使用sudo pip3 install pytesseract
这2行应该可以解决您的问题。