import pytesseract from PIL import Image # 打开图片 image = Image.open('C:/Users/Administrator/Desktop/测试/证件.jpg') # 识别文字 text = pytesseract.image_to_string(image) # 输出识别结果 print(text) 报错C:\Users\Administrator\AppData\Local\Programs\Python\Python37\python.exe C:\Users\Administrator\Desktop\测试\图片识别.py Traceback (most recent call last): File "C:\Users\Administrator\Desktop\测试\图片识别.py", line 1, in <module> import pytesseract ModuleNotFoundError: No module named 'pytesseract'
时间: 2023-06-30 15:04:24 浏览: 192
PIL.Image.open和cv2.imread的比较与相互转换的方法
5星 · 资源好评率100%
这个错误提示是因为你没有安装 pytesseract 模块。你需要运行以下命令来安装 pytesseract :
```
pip install pytesseract
```
安装完成之后,再运行你的代码即可。
阅读全文