2023/8/26 update
This commit is contained in:
@@ -33,9 +33,6 @@ def pyqt5():
|
||||
def wxpython():
|
||||
os.system("pip install wxpython -i https://mirrors.aliyun.com/pypi/simple/")
|
||||
messagebox.showinfo(install, ok)
|
||||
def pygame():
|
||||
os.system("pip install pygame -i https://mirrors.aliyun.com/pypi/simple/")
|
||||
messagebox.showinfo(install, ok)
|
||||
def Matplotlib():
|
||||
os.system('pip install Matplotlib -i https://mirrors.aliyun.com/pypi/simple/')
|
||||
messagebox.showinfo(install, ok)
|
||||
@@ -54,13 +51,13 @@ def pyside6():
|
||||
os.system('pip install pyside6 -i https://mirrors.aliyun.com/pypi/simple/')
|
||||
messagebox.showinfo(install ,ok)
|
||||
def flexx():
|
||||
os.system('pip install flexx -i https://mirrors.aliyun.com/pypi/simple/d')
|
||||
os.system('pip install flexx -i https://mirrors.aliyun.com/pypi/simple/')
|
||||
messagebox.showinfo(install, ok)
|
||||
|
||||
|
||||
# Button
|
||||
bt_fh = Button(frame, text='返回', command=fh)
|
||||
bt_qt = Button(frame, text='pyqt5安装', command=pyqt5)
|
||||
bt_pygame = Button(frame, text='pygame安装', command=pygame)
|
||||
bt_matplotlib = Button(frame, text='matplotlib安装', command=Matplotlib)
|
||||
bt_seaborn = Button(frame, text='Seaborn安装', command=Seaborn)
|
||||
bt_kivy = Button(frame, text='kivy安装', command=kivy)
|
||||
@@ -68,7 +65,7 @@ bt_pyside = Button(frame, text='pyside6安装', command=pyside6)
|
||||
bt_flexx = Button(frame, text='flexx安装', command=flexx)
|
||||
bt_pysimpleGUI = Button(frame, text='pysimpleGUI安装', command=pysimpleGUI)
|
||||
bt_wx = Button(frame, text='wxpython安装', command=wxpython)
|
||||
bt_fh = Button(frame, text='返回', command=fh)
|
||||
|
||||
|
||||
# pack and Label
|
||||
Label(root, text="GUI").pack()
|
||||
@@ -76,7 +73,6 @@ bt_fh.pack()
|
||||
bt_qt.pack()
|
||||
bt_pyside.pack()
|
||||
bt_kivy.pack()
|
||||
bt_pygame.pack()
|
||||
bt_matplotlib.pack()
|
||||
bt_seaborn.pack()
|
||||
bt_flexx.pack()
|
||||
|
||||
Reference in New Issue
Block a user