pip helper

This commit is contained in:
dengrb1 2023-05-11 23:09:20 +08:00 committed by GitHub
parent 7a76d4c7c8
commit 8b4b1186bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 12 deletions

View File

@ -64,7 +64,7 @@ def fh():
# button
bt_qt = Button(root, text='pyqt5删除', command=pyqt)
bt_pygame = Button(root, text='pygame删除', command=pygame)
bt_wxpython = Button(frame, text='wxpython删除', command=wxpython)
bt_wx = Button(frame, text='wxpython删除', command=wxpython)
bt_kivy = Button(frame, text='kivy删除', command=kivy)
bt_pyside = Button(frame, text='pyside6删除', command=pyside6)
bt_flexx = Button(frame, text='flexx删除', command=flexx)
@ -83,7 +83,7 @@ bt_matplotlib.pack()
bt_seaborn.pack()
bt_flexx.pack()
bt_pysimpleGUI.pack()
bt_wxpython.pack()
bt_wx.pack()
bt_fh.pack()

View File

@ -65,15 +65,27 @@ def fh():
root.destroy()
# Button
pip_gui = Button(frame, text='GUI类安装', command=gui_install).pack()
pip_web = Button(frame, text='web类安装', command=web_install).pack()
pip_computer = Button(frame, text='机器学习类库安装', command=computer_install).pack()
pip_pyinstaller = Button(frame, text='pyinstall安装', command=pyinstaller).pack()
pip_tqdm = Button(frame, text='tqdm安装', command=tqdm).pack()
pip_nuitka = Button(frame, text='nuitka安装', command=nuitka).pack()
pip_pywin32 = Button(frame, text='pywin32安装', command=pywin32).pack()
pip_numpy = Button(frame, text='numpy安装', command=numpy).pack()
pip_fh = Button(frame,text='返回', command=fh).pack()
pip_gui = Button(frame, text='GUI类安装', command=gui_install)
pip_web = Button(frame, text='web类安装', command=web_install)
pip_computer = Button(frame, text='机器学习类库安装', command=computer_install)
pip_pyinstaller = Button(frame, text='pyinstaller安装', command=pyinstaller)
pip_tqdm = Button(frame, text='tqdm安装', command=tqdm)
pip_nuitka = Button(frame, text='nuitka安装', command=nuitka)
pip_pywin32 = Button(frame, text='pywin32安装', command=pywin32)
pip_numpy = Button(frame, text='numpy安装', command=numpy)
pip_fh = Button(frame,text='返回', command=fh)
# pack and label
Label(root, text='安装模式').pack()
pip_gui.pack()
pip_web.pack()
pip_computer.pack()
pip_pyinstaller.pack()
pip_tqdm.pack()
pip_nuitka.pack()
pip_pywin32.pack()
pip_numpy.pack()
pip_fh.pack()
# mainloop

View File

@ -79,7 +79,6 @@ bt_sanic.pack()
bt_nameko.pack()
bt_pydantic.pack()
bt_fh.pack()
bt_fh.pack()
# mainloop