2023/8/26 update

This commit is contained in:
dengrb1
2023-08-26 11:07:37 +08:00
committed by GitHub
parent 363200fdb5
commit 28b8b0dc2f
2 changed files with 21 additions and 11 deletions

View File

@@ -61,6 +61,7 @@ def fh():
# Button
bt_fh = Button(frame, text='返回', command=fh)
bt_n = Button(frame, text='Numpy安装', command=Numpy)
bt_scipy = Button(frame, text='scipy安装', command=scipy)
bt_sympy = Button(frame, text='sympy安装', command=sympy)
@@ -68,7 +69,7 @@ bt_pandas = Button(frame, text='pandas安装', command=pandas)
bt_pyomo = Button(frame , text='pyomo安装', command=pyomo)
bt_gpy = Button(frame ,text='gpy安装', command=gpy)
bt_pydy = Button(frame , text='pydy安装', command=pydy)
bt_fh = Button(frame, text='返回', command=fh)
# pack and Label
Label(root, text='计算类安装')

View File

@@ -25,17 +25,26 @@ quit_bt = Button(root, text='返回', command=quit_exe).pack(side=RIGHT)
Label(root, text='更新日志').pack()
text = '''当前版本:1.7 (Not beta or demo)
0.1.0 暂无日志
1.0 正式版本。修复BUG改正更新日志显示问题
1.1 加入机器学习库安装修复BUG删除“关于”模块
1.2 加入更多可视化库都在gui安装和删除类里面修复一些BUG
1.2.1 加入机器学习库——openai修复BUG;一键安装所有库正在试验中......
1.3 加入更多GUI库比如pyside6, kivy等等修复一些BUG
1.4 加入pip安装检测加入更多web类库修复一些BUG
1.5 加入更多机器学习库修复一些BUG;修改pip安装检测代
1.5.1 修改pip源让下载速度变得更加快速
1.7 加入pygithub库“在线更新”模块改为正式版加入更多的机器学习库
1.6 加入更多处理数据库修复一些BUG加入WIFI检测修改更新日志文本放置的位置加入更新pip包管理工具......
1.7 加入pygithub库“在线更新”模块改为正式版修复一些BUG'''
1.5.1 修改pip源让下载速度变得更加快速
1.5 加入更多机器学习库修复一些BUG;修改pip安装检测代
1.4 加入pip安装检测加入更多web类库修复一些BUG
1.3 加入更多GUI库比如pyside6, kivy等等修复一些BUG
1.2.1 加入机器学习库——openai修复BUG;一键安装所有库正在试验中......
1.2 加入更多可视化库都在gui安装和删除类里面修复一些BUG
1.1 加入机器学习库安装修复BUG删除“关于”模块
1.0 正式版本。修复BUG改正更新日志显示问题
0.1.0 暂无日志
'''
text_box = ScrolledText(root)
text_box.pack(fill=BOTH, expand=1)