06 2022 档案
摘要:1.安装 pytesseract pip install pytesseract 2.安装 Tesseract-OCR下载地址:https://tesseract-ocr.github.io/tessdoc/Home.html#binaries 2.1 根据系统选择相应的版本 (这里以windows
阅读全文
摘要:1.命令界面: 1.1 where python 1.2 py -0p 2. IDLE 界面: 先导入 sys 再打印 python安装路径
阅读全文
摘要:1.执行命令: pip install crypto pip install pycryptodome 2.然后在python的 lib/site-packages 目录下,找到名为crpyto的目录,将其首字母大写,不然使用会报错.
阅读全文
摘要:1 # -*- coding: UTF-8 -*- 2 from tkinter import * 3 4 class MainPages: 5 def __init__(self,master): 6 self.root = master 7 self.root.geometry("600x600
阅读全文