python安装依赖库
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python安装依赖库相关的知识,希望对你有一定的参考价值。
参考技术A 先查看pip3指向的python版本pip3 -V
如果不是python3,可以使用以下命令安装依赖
python3 -m pip install pycryptodome
同理,python2安装依赖库也可以使用
python2 -m pip install pycryptodome
Python提取图片中的文字
相关依赖库安装
pip install PIL
pip install pytesseract
OCR工具安装
修改 pytesseract 源码中的路径,将
tesseract_cmd
的值改为安装Tesseract-OCR应用程序路径
安装识别中文所需依赖库,下载链接
将下载的中文库放在 Tesseract-OCR 安装目录下的 tessdata 文件夹中
识别代码
import pytesseract
from PIL import Image
img_en = Image.open(r'C:\\Users\\95235\\Downloads\\misc1\\misc1.png')
img_ch = Image.open(r'C:\\Users\\95235\\Downloads\\misc1\\misc1.png')
print('========识别字母========')
print(pytesseract.image_to_string(img_en))
print('========识别中文========')
print(pytesseract.image_to_string(img_ch, lang='chi_sim'))
以上是关于python安装依赖库的主要内容,如果未能解决你的问题,请参考以下文章