GUI
This commit is contained in:
parent
11e2890099
commit
8022b975cd
@ -29,6 +29,18 @@ def Matplotlib():
|
||||
def Seaborn():
|
||||
os.system('pip uninstall Seaborn')
|
||||
messagebox.showinfo(uninstall, ok2)
|
||||
def kivy():
|
||||
os.system('pip uninstall kivy')
|
||||
messagebox.showinfo(uninstall, ok2)
|
||||
def pysimpleGUI():
|
||||
os.system('pip uninstall pysimpleGUI')
|
||||
messagebox.showinfo(uninstall, ok2)
|
||||
def pyside6():
|
||||
os.system('pip uninstall pyside6')
|
||||
messagebox.showinfo(uninstall ,ok2)
|
||||
def flexx():
|
||||
os.system('pip uninstall flexx')
|
||||
messagebox.showinfo(uninstall, ok2)
|
||||
def fh():
|
||||
root.destroy()
|
||||
|
||||
@ -37,16 +49,24 @@ bt_pq5 = Button(root, text='pyqt5删除', command=pyqt_remove)
|
||||
bt_pygame = Button(root, text='pygame删除', command=pygame_remove)
|
||||
bt_matplotlib = Button(root, text='matplotlib删除', command=Matplotlib)
|
||||
bt_seaborn = Button(root, text='Seaborn删除', command=Seaborn)
|
||||
bt_kivy = Button(frame, text='kivy删除', command=kivy)
|
||||
bt_pyside = Button(frame, text='pyside6删除', command=pyside6)
|
||||
bt_flexx = Button(frame, text='flexx删除', command=flexx)
|
||||
bt_pysimpleGUI = Button(frame, text='pysimpleGUI删除', commmand=pysimpleGUI)
|
||||
bt_wxpython = Button(root, text='wxpython删除', command=wxpython_remove)
|
||||
bt_fh = Button(root, text='返回', command=fh)
|
||||
|
||||
# pack and Label
|
||||
Label(root, text='GUI删除').pack()
|
||||
bt_pq5.pack()
|
||||
bt_qt.pack()
|
||||
bt_pyside.pack()
|
||||
bt_kivy.pack()
|
||||
bt_pygame.pack()
|
||||
bt_matplotlib.pack()
|
||||
bt_seaborn.pack()
|
||||
bt_wxpython.pack()
|
||||
bt_flexx.pack()
|
||||
bt_pysimpleGUI.pack()
|
||||
bt_wx.pack()
|
||||
bt_fh.pack()
|
||||
|
||||
|
||||
|
@ -23,6 +23,7 @@ text = '''0.1.0 暂无日志
|
||||
1.1 加入机器学习库安装;修复BUG;删除“关于”模块
|
||||
1.2 加入更多可视化库,都在gui安装和删除类里面;修复一些BUG
|
||||
1.2.1 加入机器学习库——openai;修复BUG;一键安装所有库正在试验中......
|
||||
1.3 加入更多GUI库,比如:pyside6, kivy等等;修复一些BUG
|
||||
|
||||
当前版本:1.2 (Not beta or demo)'''
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user