pip helper

This commit is contained in:
dengrb1 2023-05-12 20:54:08 +08:00 committed by GitHub
parent a638d34e4a
commit 70b1b2245d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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()

View File

@ -18,7 +18,9 @@ def update_now():
update_now_bt = Button(root ,text='在线更新', command=update_now).pack(side=RIGHT)
quit_bt = Button(root, text='返回', command=quit_exe).pack(side=RIGHT)
Label(root, text='更新日志').pack()
text = '''0.1.0 暂无日志
text = '''当前版本:1.6 (Not beta or demo)
0.1.0 暂无日志
1.0 正式版本修复BUG改正更新日志显示问题
1.1 加入机器学习库安装修复BUG删除关于模块
1.2 加入更多可视化库都在gui安装和删除类里面修复一些BUG
@ -27,8 +29,7 @@ text = '''0.1.0 暂无日志
1.4 加入pip安装检测加入更多web类库修复一些BUG
1.5 加入更多机器学习库修复一些BUG;修改pip安装检测代
1.5.1 修改pip源让下载速度变得更加快速
当前版本:1.5 (Not beta or demo)'''
1.6 加入更多处理数据库修复一些BUG加入WIFI检测修改更新日志文本放置的位置加入更新pip包管理工具!'''
text_box = ScrolledText(root)
text_box.pack(fill=BOTH, expand=1)