Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ffcf25817b | ||
|
|
f8133116cf | ||
|
|
4057af6137 | ||
|
|
1d3a7ecdd6 | ||
|
|
21de46252b |
@@ -5,6 +5,10 @@
|
|||||||
因为作者找不到其他的GUI库或者其他库,所以作者就懒得更新了
|
因为作者找不到其他的GUI库或者其他库,所以作者就懒得更新了
|
||||||
|
|
||||||
等以后在更新把......
|
等以后在更新把......
|
||||||
|
# 重要消息2
|
||||||
|
pip helper 已经更新到了1.2版本
|
||||||
|
|
||||||
|
请耐心等待1.3版本或者1.2.1版本出世
|
||||||
|
|
||||||
# 作者
|
# 作者
|
||||||
邮箱:drb12311@163.com
|
邮箱:drb12311@163.com
|
||||||
|
|||||||
@@ -27,7 +27,6 @@ def update():
|
|||||||
jc("update")
|
jc("update")
|
||||||
|
|
||||||
def exit_exe():
|
def exit_exe():
|
||||||
os.system('taskkill -f -t -im python.exe')
|
|
||||||
root.destroy()
|
root.destroy()
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|||||||
@@ -17,18 +17,23 @@ def TensorFlow():
|
|||||||
def pytorch():
|
def pytorch():
|
||||||
os.system('pip uninstall pytorch')
|
os.system('pip uninstall pytorch')
|
||||||
messagebox.showinfo(uninstall, ok)
|
messagebox.showinfo(uninstall, ok)
|
||||||
|
def openai():
|
||||||
|
os.system('pip uninstall openai')
|
||||||
|
messagebox.showinfo(uninstall, ok)
|
||||||
def fh():
|
def fh():
|
||||||
root.destroy()
|
root.destroy()
|
||||||
|
|
||||||
# Button
|
# Button
|
||||||
bt_TensorFlow = Button(root, text='TensorFlow删除', command=TensorFlow)
|
bt_TensorFlow = Button(root, text='TensorFlow删除', command=TensorFlow)
|
||||||
bt_pytorch = Button(root, text='pytorch删除', command=pytorch)
|
bt_pytorch = Button(root, text='pytorch删除', command=pytorch)
|
||||||
|
bt_openai = Button(root, text='openai删除', command=openai)
|
||||||
bt_fh = Button(root, text='返回', command=fh)
|
bt_fh = Button(root, text='返回', command=fh)
|
||||||
|
|
||||||
# pack
|
# pack
|
||||||
Label(root, text='机器学习类库删除').pack()
|
Label(root, text='机器学习类库删除').pack()
|
||||||
bt_TensorFlow.pack()
|
bt_TensorFlow.pack()
|
||||||
bt_pytorch.pack()
|
bt_pytorch.pack()
|
||||||
|
bt_openai.pack()
|
||||||
bt_fh.pack()
|
bt_fh.pack()
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -17,18 +17,23 @@ def tensorFlow():
|
|||||||
def pytorch():
|
def pytorch():
|
||||||
os.system('pip install pytorch')
|
os.system('pip install pytorch')
|
||||||
messagebox.showinfo(install, ok)
|
messagebox.showinfo(install, ok)
|
||||||
|
def openai():
|
||||||
|
os.system('pip install openai')
|
||||||
|
messagebox.showinfo(install, ok)
|
||||||
def fh():
|
def fh():
|
||||||
root.destroy()
|
root.destroy()
|
||||||
|
|
||||||
# Button
|
# Button
|
||||||
bt_tensorFlow = Button(root, text='TensorFlow安装', command=tensorFlow)
|
bt_tensorFlow = Button(root, text='TensorFlow安装', command=tensorFlow)
|
||||||
bt_pytorch = Button(root, text='pytorch安装', command=pytorch)
|
bt_pytorch = Button(root, text='pytorch安装', command=pytorch)
|
||||||
|
bt_openai = Button(root, text='openai安装', command=openai)
|
||||||
bt_fh = Button(root, text='返回', command=fh)
|
bt_fh = Button(root, text='返回', command=fh)
|
||||||
|
|
||||||
# pack
|
# pack
|
||||||
Label(root, text='机器学习类库安装').pack()
|
Label(root, text='机器学习类库安装').pack()
|
||||||
bt_tensorFlow.pack()
|
bt_tensorFlow.pack()
|
||||||
bt_pytorch.pack()
|
bt_pytorch.pack()
|
||||||
|
bt_openai.pack()
|
||||||
bt_fh.pack()
|
bt_fh.pack()
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ root = Tk()
|
|||||||
def quit_exe():
|
def quit_exe():
|
||||||
root.destroy()
|
root.destroy()
|
||||||
def update_now():
|
def update_now():
|
||||||
webbrowser.open("https://kgithub.com/dengrb1/chatgpt/releases/")
|
webbrowser.open("https://kgithub.com/dengrb1/pip-helper/releases/")
|
||||||
messagebox.showinfo('update', '请选择最新版本并下载运行安装程序,然后就可以更新了!')
|
messagebox.showinfo('update', '请选择最新版本并下载运行安装程序,然后就可以更新了!')
|
||||||
|
|
||||||
# Label
|
# Label
|
||||||
@@ -22,6 +22,7 @@ text = '''0.1.0 暂无日志
|
|||||||
1.0 正式版本。修复BUG;改正更新日志显示问题
|
1.0 正式版本。修复BUG;改正更新日志显示问题
|
||||||
1.1 加入机器学习库安装;修复BUG;删除“关于”模块
|
1.1 加入机器学习库安装;修复BUG;删除“关于”模块
|
||||||
1.2 加入更多可视化库,都在gui安装和删除类里面;修复一些BUG
|
1.2 加入更多可视化库,都在gui安装和删除类里面;修复一些BUG
|
||||||
|
1.2.1 加入机器学习库——openai;修复BUG;一键安装所有库正在试验中......
|
||||||
|
|
||||||
当前版本:1.2 (Not beta or demo)'''
|
当前版本:1.2 (Not beta or demo)'''
|
||||||
|
|
||||||
Reference in New Issue
Block a user