pip helper

This commit is contained in:
dengrb1
2023-05-12 20:54:08 +08:00
committed by GitHub
parent a638d34e4a
commit 70b1b2245d
2 changed files with 8 additions and 5 deletions

View File

@@ -43,12 +43,14 @@ def eyeryone():
Label(root, text='pip_helper').pack()
Button(root, text='安装模式', command=install).pack()
Button(root, text='删除模式', command=delete).pack()
Button(root, text='全部安装或删除', command=eyeryone).pack()
Button(root, text='更新pip包管理工具', command=update_pip).pack()
Button(root, text='更新日志', command=update).pack()
Button(root, text='退出', command=exit_exe).pack()
Label(root, text='version 1.6 @2023-2024 dengrb1')
# mainloop
root.title('启动器')
root.title('选择')
root.geometry('200x220+400+400')
root.mainloop()