今天在运行一个程序时,提示没有按照cv2模块,所以习惯性的就运行pip install cv2,然后居然报错了。ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none)
ERROR: No matching distribution found for cv2
到网上各种找...
import easygui as eg
import random
eg.msgbox('欢迎来到我的GUI猜数字小游戏')
num = random.randint(1,20) #生成一个随机正整数1-20
msg = '输入一个数字,猜一下吧,才对了有惊喜哇(1—20)'
title = '风之翼灵猜数字小游戏'
guess = eg.integerbox(msg,title,lo...