7 Commits
v1.1 ... v1.2.1

Author SHA1 Message Date
dengrb1
ffcf25817b update 2023-05-08 21:33:26 +08:00
dengrb1
f8133116cf update 2023-05-08 21:29:20 +08:00
dengrb1
4057af6137 pip helper 2023-05-08 20:40:48 +08:00
dengrb1
1d3a7ecdd6 readme 2023-05-08 20:16:54 +08:00
dengrb1
21de46252b pip helper 2023-05-08 18:07:42 +08:00
dengrb1
2f71ff24af setup_readme 2023-05-07 18:22:06 +08:00
dengrb1
22e78b1b72 pip helper 2023-05-07 17:58:36 +08:00
7 changed files with 22 additions and 7 deletions

View File

@@ -5,6 +5,10 @@
因为作者找不到其他的GUI库或者其他库所以作者就懒得更新了
等以后在更新把......
# 重要消息2
pip helper 已经更新到了1.2版本
请耐心等待1.3版本或者1.2.1版本出世
# 作者
邮箱drb12311@163.com

View File

@@ -23,28 +23,27 @@ def install():
def delete():
jc("delete")
def gk():
messagebox.showerror('pip helper','因为程序问题,所以“关于”模块被删除!!!')
def update():
jc("update")
def exit_exe():
os.system('taskkill -f -t -im python.exe')
root.destroy()
pass
def eyeryone():
messagebox.showerror('pip helper', '暂时无法使用,因为程序测试途中出现未知问题......')
# Button and Label
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='更新日志', command=update).pack()
Button(root, text='关于', command=gk).pack()
Button(root, text='退出', command=exit_exe).pack()
# mainloop
root.title('启动器')
root.geometry('200x200+400+400')
root.geometry('200x220+400+400')
root.mainloop()

View File

@@ -17,18 +17,23 @@ def TensorFlow():
def pytorch():
os.system('pip uninstall pytorch')
messagebox.showinfo(uninstall, ok)
def openai():
os.system('pip uninstall openai')
messagebox.showinfo(uninstall, ok)
def fh():
root.destroy()
# Button
bt_TensorFlow = Button(root, text='TensorFlow删除', command=TensorFlow)
bt_pytorch = Button(root, text='pytorch删除', command=pytorch)
bt_openai = Button(root, text='openai删除', command=openai)
bt_fh = Button(root, text='返回', command=fh)
# pack
Label(root, text='机器学习类库删除').pack()
bt_TensorFlow.pack()
bt_pytorch.pack()
bt_openai.pack()
bt_fh.pack()

View File

@@ -17,18 +17,23 @@ def tensorFlow():
def pytorch():
os.system('pip install pytorch')
messagebox.showinfo(install, ok)
def openai():
os.system('pip install openai')
messagebox.showinfo(install, ok)
def fh():
root.destroy()
# Button
bt_tensorFlow = Button(root, text='TensorFlow安装', command=tensorFlow)
bt_pytorch = Button(root, text='pytorch安装', command=pytorch)
bt_openai = Button(root, text='openai安装', command=openai)
bt_fh = Button(root, text='返回', command=fh)
# pack
Label(root, text='机器学习类库安装').pack()
bt_tensorFlow.pack()
bt_pytorch.pack()
bt_openai.pack()
bt_fh.pack()

1
setup_readme.txt Normal file
View File

@@ -0,0 +1 @@
1.2 加入更多可视化库都在gui安装和删除类里面;修复一些BUG

View File

@@ -11,7 +11,7 @@ root = Tk()
def quit_exe():
root.destroy()
def update_now():
webbrowser.open("https://kgithub.com/dengrb1/chatgpt/releases/")
webbrowser.open("https://kgithub.com/dengrb1/pip-helper/releases/")
messagebox.showinfo('update', '请选择最新版本并下载运行安装程序,然后就可以更新了!')
# Label
@@ -22,6 +22,7 @@ text = '''0.1.0 暂无日志
1.0 正式版本修复BUG改正更新日志显示问题
1.1 加入机器学习库安装修复BUG删除关于模块
1.2 加入更多可视化库都在gui安装和删除类里面修复一些BUG
1.2.1 加入机器学习库openai修复BUG;一键安装所有库正在试验中......
当前版本:1.2 (Not beta or demo)'''