|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
from easygui import *
import os
import time
while True:
a = ""
choice = ["pip3","pip"]
choices = choicebox("You use ...", "pygame installer", choice)
if choices == "pip3":
a = " (piping...)"
msgbox("Installing{}, press pick OK".format(a))
os.system(r"c:\users\tonyg\appdata\local\programs\python\python38\python.exe -m pip install --upgrade pip")
os.system("pip3 install pygame")
break
else:
a = " (pip3ing...)"
msgbox("Installing{}, press pick OK".format(a))
os.system(r"c:\users\tonyg\appdata\local\programs\python\python38\python.exe -m pip install --upgrade pip")
os.system("pip install pygame")
break
w = r"if you have matter,please tell 2222057727@qq.com or https://pythonharrycom.godaddysites.com/"
msgbox(str(w),"thank you for your using")
我自己写的一个pygameinstaller
|
|