江予行 发表于 2020-9-8 20:05:58

pygameinstaller

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

江予行 发表于 2021-2-4 15:09:09

没人,好惨
页: [1]
查看完整版本: pygameinstaller