pip helper
This commit is contained in:
parent
7a76d4c7c8
commit
8b4b1186bc
@ -64,7 +64,7 @@ def fh():
|
|||||||
# button
|
# button
|
||||||
bt_qt = Button(root, text='pyqt5删除', command=pyqt)
|
bt_qt = Button(root, text='pyqt5删除', command=pyqt)
|
||||||
bt_pygame = Button(root, text='pygame删除', command=pygame)
|
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_kivy = Button(frame, text='kivy删除', command=kivy)
|
||||||
bt_pyside = Button(frame, text='pyside6删除', command=pyside6)
|
bt_pyside = Button(frame, text='pyside6删除', command=pyside6)
|
||||||
bt_flexx = Button(frame, text='flexx删除', command=flexx)
|
bt_flexx = Button(frame, text='flexx删除', command=flexx)
|
||||||
@ -83,7 +83,7 @@ bt_matplotlib.pack()
|
|||||||
bt_seaborn.pack()
|
bt_seaborn.pack()
|
||||||
bt_flexx.pack()
|
bt_flexx.pack()
|
||||||
bt_pysimpleGUI.pack()
|
bt_pysimpleGUI.pack()
|
||||||
bt_wxpython.pack()
|
bt_wx.pack()
|
||||||
bt_fh.pack()
|
bt_fh.pack()
|
||||||
|
|
||||||
|
|
||||||
|
30
install.pyw
30
install.pyw
@ -65,15 +65,27 @@ def fh():
|
|||||||
root.destroy()
|
root.destroy()
|
||||||
|
|
||||||
# Button
|
# Button
|
||||||
pip_gui = Button(frame, text='GUI类安装', command=gui_install).pack()
|
pip_gui = Button(frame, text='GUI类安装', command=gui_install)
|
||||||
pip_web = Button(frame, text='web类安装', command=web_install).pack()
|
pip_web = Button(frame, text='web类安装', command=web_install)
|
||||||
pip_computer = Button(frame, text='机器学习类库安装', command=computer_install).pack()
|
pip_computer = Button(frame, text='机器学习类库安装', command=computer_install)
|
||||||
pip_pyinstaller = Button(frame, text='pyinstall安装', command=pyinstaller).pack()
|
pip_pyinstaller = Button(frame, text='pyinstaller安装', command=pyinstaller)
|
||||||
pip_tqdm = Button(frame, text='tqdm安装', command=tqdm).pack()
|
pip_tqdm = Button(frame, text='tqdm安装', command=tqdm)
|
||||||
pip_nuitka = Button(frame, text='nuitka安装', command=nuitka).pack()
|
pip_nuitka = Button(frame, text='nuitka安装', command=nuitka)
|
||||||
pip_pywin32 = Button(frame, text='pywin32安装', command=pywin32).pack()
|
pip_pywin32 = Button(frame, text='pywin32安装', command=pywin32)
|
||||||
pip_numpy = Button(frame, text='numpy安装', command=numpy).pack()
|
pip_numpy = Button(frame, text='numpy安装', command=numpy)
|
||||||
pip_fh = Button(frame,text='返回', command=fh).pack()
|
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
|
# mainloop
|
||||||
|
@ -79,7 +79,6 @@ bt_sanic.pack()
|
|||||||
bt_nameko.pack()
|
bt_nameko.pack()
|
||||||
bt_pydantic.pack()
|
bt_pydantic.pack()
|
||||||
bt_fh.pack()
|
bt_fh.pack()
|
||||||
bt_fh.pack()
|
|
||||||
|
|
||||||
|
|
||||||
# mainloop
|
# mainloop
|
||||||
|
Loading…
x
Reference in New Issue
Block a user