42 Commits
v1.2.1 ... v1.7

Author SHA1 Message Date
dengrb1
b8f99f471f pip-helper 2023-05-26 17:31:11 +08:00
dengrb1
c2ca3bc705 update 2023-05-26 17:20:42 +08:00
dengrb1
61736e53eb update 2023-05-26 17:19:38 +08:00
dengrb1
09af622168 update 2023-05-26 17:18:28 +08:00
dengrb1
a0dfeaeb01 maths_delete 2023-05-14 22:51:51 +08:00
dengrb1
5ea12cb433 python_jc 2023-05-13 13:00:29 +08:00
dengrb1
0e4ccad068 python_jc 2023-05-12 23:00:19 +08:00
dengrb1
14d13cf813 python_jc 2023-05-12 22:54:26 +08:00
dengrb1
a502a19fcd python_jc 2023-05-12 22:40:41 +08:00
dengrb1
3ddf7424de python_jc 2023-05-12 22:25:13 +08:00
dengrb1
de1e57179e pip helper 2023-05-12 21:48:14 +08:00
dengrb1
65d292fb54 python_jc 2023-05-12 21:44:50 +08:00
dengrb1
738bfe35d6 python_jc 2023-05-12 21:42:26 +08:00
dengrb1
0b7b7585d5 pip helper 2023-05-12 21:38:02 +08:00
dengrb1
8555df53ec pip helper 2023-05-12 21:20:20 +08:00
dengrb1
87f50a7cc1 client 2023-05-12 21:07:09 +08:00
dengrb1
9d00ade094 update 2023-05-12 20:54:20 +08:00
dengrb1
70b1b2245d pip helper 2023-05-12 20:54:08 +08:00
dengrb1
a638d34e4a pip helper 2023-05-12 20:19:58 +08:00
dengrb1
7c6873a729 pip helper 2023-05-12 19:30:07 +08:00
dengrb1
45403f5d3d pip helper 2023-05-12 19:18:23 +08:00
dengrb1
178591eaa9 pip helper 2023-05-12 13:28:36 +08:00
dengrb1
8b4b1186bc pip helper 2023-05-11 23:09:20 +08:00
dengrb1
7a76d4c7c8 update 2023-05-11 22:20:00 +08:00
dengrb1
9da156f37c pip helper 2023-05-11 22:03:12 +08:00
dengrb1
0df6de9314 update 2023-05-11 13:23:37 +08:00
dengrb1
b1822867ed update 2023-05-11 13:15:16 +08:00
dengrb1
0e4aeb62d2 pip helper 2023-05-11 13:11:38 +08:00
dengrb1
5313f6d06e pip helper 2023-05-11 13:04:03 +08:00
dengrb1
97bd44f6bd pip helper 2023-05-11 11:54:10 +08:00
dengrb1
1ad00b059d update 2023-05-10 18:23:45 +08:00
dengrb1
d516496935 python_jc 2023-05-10 17:44:39 +08:00
dengrb1
fbf21c7259 pip helper 2023-05-10 17:36:23 +08:00
dengrb1
936eae1054 pip helper 2023-05-10 17:33:03 +08:00
dengrb1
e5524e33e3 pip helper 2023-05-10 13:24:35 +08:00
dengrb1
dec02d04cb README 2023-05-09 18:33:03 +08:00
dengrb1
67355a1355 pip helper 2023-05-09 18:21:57 +08:00
dengrb1
114a0c8a8e GUI 2023-05-09 13:24:54 +08:00
dengrb1
cefcd57d59 GUI 2023-05-09 13:21:54 +08:00
dengrb1
1e809e056e update 2023-05-09 12:20:45 +08:00
dengrb1
8022b975cd GUI 2023-05-08 22:05:16 +08:00
dengrb1
11e2890099 pip helper 2023-05-08 22:02:36 +08:00
18 changed files with 686 additions and 171 deletions

View File

@@ -9,17 +9,34 @@ file_error = '文件丢失!请重新安装'
ok2 = "删除完成" ok2 = "删除完成"
uninstall = 'pip uninstall' uninstall = 'pip uninstall'
# 创建滚动区域的Canvas对象
canvas = Canvas(root, width=280, height=280, scrollregion=(0, 0, 500, 500))
def pyqt_remove(): # 创建可滚动区域的Frame对象并将其添加到Canvas中
frame = Frame(canvas)
frame.bind("<Configure>", lambda e: canvas.configure(scrollregion=canvas.bbox("all")))
canvas.create_window((0, 0), window=frame, anchor="nw")
# 创建Scrollbar对象并将其绑定到Canvas上
scrollbar = Scrollbar(root, orient="vertical", command=canvas.yview)
canvas.configure(yscrollcommand=scrollbar.set)
scrollbar.pack(side="right", fill="y")
# 显示Canvas和Scrollbar
canvas.pack(side="left", fill="both", expand=True)
def pyqt():
os.system('pip uninstall pyqt5') os.system('pip uninstall pyqt5')
os.systen('pip uninstall PyQtWebEngine') os.systen('pip uninstall PyQtWebEngine')
messagebox.showinfo('pip uninstall', ok2) messagebox.showinfo('pip uninstall', ok2)
pass pass
def wxpython_remove(): def wxpython():
os.system('pip uninstall wxpython') os.system('pip uninstall wxpython')
messagebox.showinfo('pip uninstall', ok2) messagebox.showinfo('pip uninstall', ok2)
pass pass
def pygame_remove(): def pygame():
os.system('pip uninstall pygame') os.system('pip uninstall pygame')
messagebox.showinfo('pip uninstall', ok2) messagebox.showinfo('pip uninstall', ok2)
pass pass
@@ -29,28 +46,48 @@ def Matplotlib():
def Seaborn(): def Seaborn():
os.system('pip uninstall Seaborn') os.system('pip uninstall Seaborn')
messagebox.showinfo(uninstall, ok2) messagebox.showinfo(uninstall, ok2)
def kivy():
os.system('pip uninstall kivy')
messagebox.showinfo(uninstall, ok2)
def pysimpleGUI():
os.system('pip uninstall pysimpleGUI')
messagebox.showinfo(uninstall, ok2)
def pyside6():
os.system('pip uninstall pyside6')
messagebox.showinfo(uninstall ,ok2)
def flexx():
os.system('pip uninstall flexx')
messagebox.showinfo(uninstall, ok2)
def fh(): def fh():
root.destroy() root.destroy()
# button # button
bt_pq5 = Button(root, text='pyqt5删除', command=pyqt_remove) bt_qt = Button(root, text='pyqt5删除', command=pyqt)
bt_pygame = Button(root, text='pygame删除', command=pygame_remove) bt_pygame = Button(root, text='pygame删除', command=pygame)
bt_matplotlib = Button(root, text='matplotlib删除', command=Matplotlib) bt_wx = Button(frame, text='wxpython删除', command=wxpython)
bt_seaborn = Button(root, text='Seaborn删除', command=Seaborn) bt_kivy = Button(frame, text='kivy删除', command=kivy)
bt_wxpython = Button(root, text='wxpython删除', command=wxpython_remove) bt_pyside = Button(frame, text='pyside6删除', command=pyside6)
bt_fh = Button(root, text='返回', command=fh) bt_flexx = Button(frame, text='flexx删除', command=flexx)
bt_matplotlib = Button(frame, text='matplatlib删除', command=Matplotlib)
bt_seaborn = Button(frame, text='seaborn删除', command=Seaborn)
bt_pysimpleGUI = Button(frame, text='pysimpleGUI删除', command=pysimpleGUI)
bt_fh = Button(frame, text='返回', command=fh)
# pack and Label # pack and Label
Label(root, text='GUI删除').pack() Label(root, text='GUI删除').pack()
bt_pq5.pack() bt_qt.pack()
bt_pyside.pack()
bt_kivy.pack()
bt_pygame.pack() bt_pygame.pack()
bt_matplotlib.pack() bt_matplotlib.pack()
bt_seaborn.pack() bt_seaborn.pack()
bt_wxpython.pack() bt_flexx.pack()
bt_pysimpleGUI.pack()
bt_wx.pack()
bt_fh.pack() bt_fh.pack()
# mainloop # mainloop
root.title('GUI') root.title('GUI')
root.geometry('200x230+400+500') root.geometry('200x300+100+100')
root.mainloop() root.mainloop()

View File

@@ -8,45 +8,83 @@ ml = os.getcwd()
ok = "install OK!" ok = "install OK!"
install = "Install" install = "Install"
# 创建滚动区域的Canvas对象
canvas = Canvas(root, width=280, height=280, scrollregion=(0, 0, 500, 500))
# 创建可滚动区域的Frame对象并将其添加到Canvas中
frame = Frame(canvas)
frame.bind("<Configure>", lambda e: canvas.configure(scrollregion=canvas.bbox("all")))
canvas.create_window((0, 0), window=frame, anchor="nw")
# 创建Scrollbar对象并将其绑定到Canvas上
scrollbar = Scrollbar(root, orient="vertical", command=canvas.yview)
canvas.configure(yscrollcommand=scrollbar.set)
scrollbar.pack(side="right", fill="y")
# 显示Canvas和Scrollbar
canvas.pack(side="left", fill="both", expand=True)
def pyqt5(): def pyqt5():
os.system("pip install pyqt5") os.system("pip install pyqt5 -i https://mirrors.aliyun.com/pypi/simple/")
os.systen('pip install PyQtWebEngine') os.systen('pip install PyQtWebEngine -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok) messagebox.showinfo(install, ok)
def wxpython(): def wxpython():
os.system("pip install wxpython") os.system("pip install wxpython -i https://mirrors.aliyun.com/pypi/simple/")
messagebox.showinfo(install, ok) messagebox.showinfo(install, ok)
def pygame(): def pygame():
os.system("pip install pygame") os.system("pip install pygame -i https://mirrors.aliyun.com/pypi/simple/")
messagebox.showinfo(install, ok) messagebox.showinfo(install, ok)
def Matplotlib(): def Matplotlib():
os.system('pip install Matplotlib') os.system('pip install Matplotlib -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok) messagebox.showinfo(install, ok)
def Seaborn(): def Seaborn():
os.system('pip install Seaborn') os.system('pip install Seaborn -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok) messagebox.showinfo(install, ok)
def fh(): def fh():
root.destroy() root.destroy()
def kivy():
os.system('pip install kivy -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok)
def pysimpleGUI():
os.system('pip install pysimpleGUI -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok)
def pyside6():
os.system('pip install pyside6 -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install ,ok)
def flexx():
os.system('pip install flexx -i https://mirrors.aliyun.com/pypi/simple/d')
messagebox.showinfo(install, ok)
# Button # Button
bt_qt = Button(root, text='pyqt5安装', command=pyqt5) bt_qt = Button(frame, text='pyqt5安装', command=pyqt5)
bt_pygame = Button(root, text='pygame安装', command=pygame) bt_pygame = Button(frame, text='pygame安装', command=pygame)
bt_matplotlib = Button(root, text='matplotlib安装', command=Matplotlib) bt_matplotlib = Button(frame, text='matplotlib安装', command=Matplotlib)
bt_seaborn = Button(root, text='Seaborn安装', command=Seaborn) bt_seaborn = Button(frame, text='Seaborn安装', command=Seaborn)
bt_wx = Button(root, text='wxpython安装', command=wxpython) bt_kivy = Button(frame, text='kivy安装', command=kivy)
bt_fh = Button(root, text='返回', command=fh) bt_pyside = Button(frame, text='pyside6安装', command=pyside6)
bt_flexx = Button(frame, text='flexx安装', command=flexx)
bt_pysimpleGUI = Button(frame, text='pysimpleGUI安装', command=pysimpleGUI)
bt_wx = Button(frame, text='wxpython安装', command=wxpython)
bt_fh = Button(frame, text='返回', command=fh)
# pack and Label # pack and Label
Label(root, text="GUI").pack() Label(root, text="GUI").pack()
bt_qt.pack() bt_qt.pack()
bt_pyside.pack()
bt_kivy.pack()
bt_pygame.pack() bt_pygame.pack()
bt_matplotlib.pack() bt_matplotlib.pack()
bt_seaborn.pack() bt_seaborn.pack()
bt_flexx.pack()
bt_pysimpleGUI.pack()
bt_wx.pack() bt_wx.pack()
bt_fh.pack() bt_fh.pack()
# mainloop # mainloop
root.title("GUI") root.title("GUI")
root.geometry('200x230+400+400') root.geometry('200x230+100+110')
root.mainloop() root.mainloop()

View File

@@ -1,16 +1,27 @@
# pip-helper # pip-helper
可以帮助不会使用pip安装库的人准备 可以帮助不会使用pip安装库的人准备
# 重要通知!!! # 使用方式
因为作者找不到其他的GUI库或者其他库所以作者就懒得更新了 首先在**https://github.com/dengrb1/pip-helper**里面下载最新的版本
等以后在更新把...... 然后再打开刚刚下载好的文件,然后想平时安装程序一样使用本程序吧!!!
# 重要消息2
pip helper 已经更新到了1.2版本 # 更新日志
当前版本:1.6 (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.6 加入更多处理数据库修复一些BUG加入WIFI检测修改更新日志文本放置的位置加入更新pip包管理工具......
请耐心等待1.3版本或者1.2.1版本出世
# 作者 # 作者
邮箱drb12311@163.com 邮箱drb12311@163.com
# 之后的就没有了...... # **_之后的就没有了......_**

View File

@@ -1,12 +1,12 @@
from tkinter import * from tkinter import *
from tkinter import messagebox from tkinter import messagebox
import platform import sys
from subprocess import call
import os import os
root = Tk() root = Tk()
ml = os.getcwd() ml = os.getcwd()
System = platform.system()
file_error = '文件丢失,请重新安装' file_error = '文件丢失,请重新安装'
@@ -16,7 +16,9 @@ def jc(exe_name):
else: else:
messagebox.showerror('system',file_error) messagebox.showerror('system',file_error)
pass pass
def update_pip():
os.system('pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade pip')
messagebox.showinfo('pip helper','更新pip包管理器成功!')
def install(): def install():
jc("install") jc("install")
@@ -38,12 +40,14 @@ def eyeryone():
Label(root, text='pip_helper').pack() Label(root, text='pip_helper').pack()
Button(root, text='安装模式', command=install).pack() Button(root, text='安装模式', command=install).pack()
Button(root, text='删除模式', command=delete).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=update).pack()
Button(root, text='退出', command=exit_exe).pack() Button(root, text='退出', command=exit_exe).pack()
Label(root, text='version 1.6 @2023-2024 dengrb1').pack()
# mainloop # mainloop
root.title('启动器') root.title('选择')
root.geometry('200x220+400+400') root.geometry('200x220+400+400')
root.mainloop() root.mainloop()

View File

@@ -10,6 +10,24 @@ uninstall = 'pip uninstall'
ok = '删除完成' ok = '删除完成'
# 创建滚动区域的Canvas对象
canvas = Canvas(root, width=280, height=280, scrollregion=(0, 0, 500, 500))
# 创建可滚动区域的Frame对象并将其添加到Canvas中
frame = Frame(canvas)
frame.bind("<Configure>", lambda e: canvas.configure(scrollregion=canvas.bbox("all")))
canvas.create_window((0, 0), window=frame, anchor="nw")
# 创建Scrollbar对象并将其绑定到Canvas上
scrollbar = Scrollbar(root, orient="vertical", command=canvas.yview)
canvas.configure(yscrollcommand=scrollbar.set)
scrollbar.pack(side="right", fill="y")
# 显示Canvas和Scrollbar
canvas.pack(side="left", fill="both", expand=True)
# def # def
def TensorFlow(): def TensorFlow():
os.system('pip uninstall TensorFlow') os.system('pip uninstall TensorFlow')
@@ -20,19 +38,42 @@ def pytorch():
def openai(): def openai():
os.system('pip uninstall openai') os.system('pip uninstall openai')
messagebox.showinfo(uninstall, ok) messagebox.showinfo(uninstall, ok)
def keras():
os.system('pip uninstall keras')
messagebox.showinfo(uninstall, ok)
def scikit_learn():
os.system('pip uninstall scikit-learn')
messagebox.showinfo(uninstall, ok)
def lightGBM():
os.system('pip uninstall lightGBM')
messagebox.showinfo(uninstall, ok)
def CatBoost():
os.system('pip uninstall CatBoost')
messagebox.showinfo(uninstall, ok)
def XGBoost():
os.system('pip uninstall XGBoost')
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(frame, text='TensorFlow删除', command=TensorFlow)
bt_pytorch = Button(root, text='pytorch删除', command=pytorch) bt_pytorch = Button(frame, text='pytorch删除', command=pytorch)
bt_openai = Button(root, text='openai删除', command=openai) bt_keras = Button(frame, text='keras安装', command=keras)
bt_fh = Button(root, text='返回', command=fh) bt_lightGBM = Button(frame, text='lightGBM安装', command=lightGBM)
bt_scikit_learn = Button(frame, text='scikit-learn安装', command=scikit_learn)
bt_XGBoost = Button(frame, text='XGBoost删除', command=XGBoost)
bt_openai = Button(frame, text='openai删除', command=openai)
bt_fh = Button(frame, 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_keras.pack()
bt_lightGBM.pack()
bt_XGBoost.pack()
bt_scikit_learn.pack()
bt_openai.pack() bt_openai.pack()
bt_fh.pack() bt_fh.pack()

View File

@@ -9,30 +9,64 @@ file_error = '文件丢失,请重新安装'
ok = '安装完成' ok = '安装完成'
install = 'pip install' install = 'pip install'
# 创建滚动区域的Canvas对象
canvas = Canvas(root, width=280, height=280, scrollregion=(0, 0, 500, 500))
# 创建可滚动区域的Frame对象并将其添加到Canvas中
frame = Frame(canvas)
frame.bind("<Configure>", lambda e: canvas.configure(scrollregion=canvas.bbox("all")))
canvas.create_window((0, 0), window=frame, anchor="nw")
# 创建Scrollbar对象并将其绑定到Canvas上
scrollbar = Scrollbar(root, orient="vertical", command=canvas.yview)
canvas.configure(yscrollcommand=scrollbar.set)
scrollbar.pack(side="right", fill="y")
# 显示Canvas和Scrollbar
canvas.pack(side="left", fill="both", expand=True)
# def # def
def tensorFlow(): def tensorFlow():
os.system('pip install TensorFlow') os.system('pip install TensorFlow -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok) messagebox.showinfo(install, ok)
def pytorch(): def pytorch():
os.system('pip install pytorch') os.system('pip install pytorch -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok) messagebox.showinfo(install, ok)
def openai(): def openai():
os.system('pip install openai') os.system('pip install openai -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok) messagebox.showinfo(install, ok)
def keras():
os.system('pip install keras -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok)
def scikit_learn():
os.system('pip install scikit-learn -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok)
def lightGBM():
os.system('pip install lightGBM -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok)
def CatBoost():
os.system('pip install CatBoost -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.shir
def fh(): def fh():
root.destroy() root.destroy()
# Button # Button
bt_tensorFlow = Button(root, text='TensorFlow安装', command=tensorFlow) bt_tensorFlow = Button(frame, text='TensorFlow安装', command=tensorFlow)
bt_pytorch = Button(root, text='pytorch安装', command=pytorch) bt_pytorch = Button(frame, text='pytorch安装', command=pytorch)
bt_openai = Button(root, text='openai安装', command=openai) bt_keras = Button(frame, text='keras安装', command=keras)
bt_fh = Button(root, text='返回', command=fh) bt_lightGBM = Button(frame, text='lightGBM安装', command=lightGBM)
bt_scikit_learn = Button(frame, text='scikit-learn安装', command=scikit_learn)
bt_openai = Button(frame, text='openai安装', command=openai)
bt_fh = Button(frame, 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_keras.pack()
bt_lightGBM.pack()
bt_scikit_learn.pack()
bt_openai.pack() bt_openai.pack()
bt_fh.pack() bt_fh.pack()

View File

@@ -7,7 +7,7 @@ root = Tk()
ml = os.getcwd() ml = os.getcwd()
file_error = '文件丢失,请重新安装' file_error = '文件丢失,请重新安装'
uninstall = 'pip uninstall' uninstall = 'pip uninstall'
ok2 = '删除完成' ok = '删除完成'
# 创建滚动区域的Canvas对象 # 创建滚动区域的Canvas对象
canvas = Canvas(root, width=280, height=280, scrollregion=(0, 0, 500, 500)) canvas = Canvas(root, width=280, height=280, scrollregion=(0, 0, 500, 500))
@@ -39,40 +39,48 @@ def web_delete():
pass pass
def computer_delete(): def computer_delete():
open_exe('computer_delete') open_exe('computer_delete')
def maths_delete():
open_exe('maths_delete')
def pyinstaller_remove(): def pyinstaller_remove():
os.system('pip uninstall pyinstaller') os.system('pip uninstall pyinstaller')
messagebox.showinfo('pip uninstall', ok2) messagebox.showinfo('pip uninstall', ok)
pass pass
def tqdm_remove(): def tqdm_remove():
os.system('pip uninstall tqdm') os.system('pip uninstall tqdm')
messagebox.showinfo('pip uninstall', ok2) messagebox.showinfo('pip uninstall', ok)
pass pass
def nuitka_remove(): def nuitka_remove():
os.system('pip uninstall nuitka') os.system('pip uninstall nuitka')
messagebox.showinfo(uninstall, ok2) messagebox.showinfo(uninstall, ok)
pass pass
def pywin32_remove(): def pywin32_remove():
os.system('pip uninstall pywin32') os.system('pip uninstall pywin32')
messagebox.showinfo(uninstall, ok2) messagebox.showinfo(uninstall, ok)
pass pass
def numpy_remove(): def numpy_remove():
os.system('pip uninstall numpy') os.system('pip uninstall numpy')
messagebox.showinfo(uninstall, ok2) messagebox.showinfo(uninstall, ok)
pass pass
def pygithub_remove():
os.system('pip uninstall pygithub')
messagebox.showinfo(uninstall, ok)
def fh(): def fh():
root.destroy() root.destroy()
# Button # Button
Label(root, text='删除模式')
remove_fh = Button(frame, text='返回', command=fh).pack()
remove_GUI = Button(frame, text='GUI类删除', command=GUI_delete).pack() remove_GUI = Button(frame, text='GUI类删除', command=GUI_delete).pack()
remove_web = Button(frame, text='web类删除', command=web_delete).pack() remove_web = Button(frame, text='web类删除', command=web_delete).pack()
remove_computer = Button(frame, text='机器学习类删除', command=computer_delete).pack() remove_computer = Button(frame, text='机器学习类删除', command=computer_delete).pack()
remove_maths = Button(frame, text='maths类删除', command=maths_delete).pack()
remove_pyinstaller = Button(frame, text='pyinstaller删除', command=pyinstaller_remove).pack() remove_pyinstaller = Button(frame, text='pyinstaller删除', command=pyinstaller_remove).pack()
remove_tqdm = Button(frame, text='tqdm删除', command=tqdm_remove).pack() remove_tqdm = Button(frame, text='tqdm删除', command=tqdm_remove).pack()
remove_pygithub = Button(frame, text='pygithub删除', command=pygithub_remove).pack()
remove_nuitka = Button(frame, text='nuitka删除', command=nuitka_remove).pack() remove_nuitka = Button(frame, text='nuitka删除', command=nuitka_remove).pack()
remove_pywin32 = Button(frame, text='pywin32删除', command=pywin32_remove).pack() remove_pywin32 = Button(frame, text='pywin32删除', command=pywin32_remove).pack()
remove_numpy = Button(frame ,text="numpy删除", command=numpy_remove).pack() remove_numpy = Button(frame ,text="numpy删除", command=numpy_remove).pack()
remove_fh = Button(frame, text='返回', command=fh).pack()
# pack # pack
@@ -81,5 +89,5 @@ canvas.pack(side="left", fill="both", expand=True)
# mainloop # mainloop
root.title("delete") root.title("delete")
root.geometry("200x250+400+600") root.geometry("200x250+100+10")
root.mainloop() root.mainloop()

View File

@@ -8,6 +8,7 @@ ml = os.getcwd()
ok = '安装成功' ok = '安装成功'
install = 'pip install' install = 'pip install'
file_error = '文件丢失,请重新安装' file_error = '文件丢失,请重新安装'
i = '-i https://mirrors.aliyun.com/pypi/simple/'
# 创建滚动区域的Canvas对象 # 创建滚动区域的Canvas对象
@@ -41,42 +42,57 @@ def web_install():
open_exe('web_install') open_exe('web_install')
def computer_install(): def computer_install():
open_exe('computer_install') open_exe('computer_install')
def maths_install():
open_exe('maths_install')
def pyinstaller(): def pyinstaller():
os.system('pip install pyinstaller') os.system('pip install pyinstaller -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo('pip install', ok) messagebox.showinfo('pip install', ok)
pass pass
def nuitka(): def nuitka():
os.system('pip install nuitka') os.system('pip install nuitka -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo('pip install', ok) messagebox.showinfo('pip install', ok)
pass pass
def pywin32(): def pywin32():
os.system('pip install pywin32') os.system('pip install pywin32 -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok) messagebox.showinfo(install, ok)
pass pass
def tqdm(): def tqdm():
os.system('pip install tqdm') os.system('pip install tqdm -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok)
pass
def numpy():
os.system('pip install numpy')
messagebox.showinfo(install, ok) messagebox.showinfo(install, ok)
pass pass
def pygithub():
os.system(f'pip install pygithub {i}')
messagebox.showinfo(install,ok)
def fh(): def fh():
root.destroy() root.destroy()
# Button # Button
pip_gui = Button(frame, text='GUI类安装', command=gui_install).pack() pip_gui = Button(frame, text='GUI类安装', command=gui_install)
pip_web = Button(frame, text='web类安装', command=web_install).pack() pip_web = Button(frame, text='web类安装', command=web_install)
pip_computer = Button(frame, text='机器学习类库安装', command=computer_install).pack() pip_computer = Button(frame, text='机器学习类库安装', command=computer_install)
pip_pyinstaller = Button(frame, text='pyinstall安装', command=pyinstaller).pack() pip_maths = Button(frame, text='maths类安装', command=maths_install)
pip_tqdm = Button(frame, text='tqdm安装', command=tqdm).pack() pip_pyinstaller = Button(frame, text='pyinstaller安装', command=pyinstaller)
pip_nuitka = Button(frame, text='nuitka安装', command=nuitka).pack() pip_tqdm = Button(frame, text='tqdm安装', command=tqdm)
pip_pywin32 = Button(frame, text='pywin32安装', command=pywin32).pack() pip_pygithub = Button(frame, text='pygithub安装', command=pygithub)
pip_numpy = Button(frame, text='numpy安装', command=numpy).pack() pip_nuitka = Button(frame, text='nuitka安装', command=nuitka)
pip_fh = Button(frame,text='返回', command=fh).pack() pip_pywin32 = Button(frame, text='pywin32安装', command=pywin32)
pip_fh = Button(frame,text='返回', command=fh)
# pack and label
Label(root, text='安装模式').pack()
pip_fh.pack()
pip_gui.pack()
pip_web.pack()
pip_computer.pack()
pip_maths.pack()
pip_pyinstaller.pack()
pip_tqdm.pack()
pip_pygithub.pack()
pip_nuitka.pack()
pip_pywin32.pack()
# mainloop # mainloop
root.title('安装') root.title('安装')
root.geometry('200x270+400+600') root.geometry('200x270+100+50')
root.mainloop() root.mainloop()

View File

@@ -2,12 +2,13 @@ from tkinter import *
from tkinter import messagebox from tkinter import messagebox
import os import os
# 定义内容和创建主窗口
root = Tk() root = Tk()
ml = os.getcwd() ml = os.getcwd()
ok = '安装成功'
install_1 = 'pip install'
file_error = '文件丢失,请重新安装' file_error = '文件丢失,请重新安装'
uninstall = 'pip uninstall'
ok = '删除成功!'
i = '-i https://mirrors.aliyun.com/pypi/simple/'
# 创建滚动区域的Canvas对象 # 创建滚动区域的Canvas对象
@@ -28,38 +29,45 @@ canvas.pack(side="left", fill="both", expand=True)
# def # def
def Requests():
os.system('pip install Requests')
messagebox.showinfo('pip install', ok)
pass
def django():
os.system('pip install django')
messagebox.showinfo(install_1, ok)
pass
def open_exe(exe_name): def open_exe(exe_name):
if os.path.exists(os.path.join(ml, f"{exe_name}.exe")): if os.path.exists(os.path.join(ml, f"{exe_name}.exe")):
os.system(f"start {exe_name}.exe") os.system(f"start {exe_name}.exe")
else: else:
messagebox.showerror('install', file_error) messagebox.showerror('pip helper', file_error)
pass
pass pass
def Numpy():
os.system('pip uninstall numpy')
messagebox.showinfo(uninstall, ok)
def scipy():
os.system(f'pip uninstall scipy')
messagebox.showinfo(uninstall, ok)
def sympy():
os.system(f'pip uninstall sympy')
messagebox.showinfo(uninstall, ok)
def pandas():
os.system(f'pip uninstall pandas')
messagebox.showinfo(uninstall, ok)
def fh(): def fh():
root.destroy() root.destroy()
# Button # Button
bt_d = Button(frame, text='django安装', command=django) bt_n = Button(frame, text='Numpy删除', command=Numpy)
bt_r = Button(frame, text='Requests安装', command=Requests) bt_scipy = Button(frame, text='scipy删除', command=scipy)
bt_sympy = Button(frame, text='sympy删除', command=sympy)
bt_pandas = Button(frame, text='pandas删除', command=pandas)
bt_fh = Button(frame, text='返回', command=fh) bt_fh = Button(frame, text='返回', command=fh)
# pack # pack and Label
Label(root, text='web类安装').pack() Label(root, text='计算类删除')
bt_d.pack()
bt_r.pack()
bt_fh.pack() bt_fh.pack()
bt_n.pack()
bt_scipy.pack()
bt_sympy.pack()
bt_pandas.pack()
# mainloop # mainloop
root.title('web') root.title('删除')
root.geometry('200x250+600+400') root.geometry('200x200+400+100')
root.mainloop() root.mainloop()

73
maths_install.pyw Normal file
View File

@@ -0,0 +1,73 @@
from tkinter import *
from tkinter import messagebox
import os
root = Tk()
ml = os.getcwd()
file_error = '文件丢失,请重新安装'
install = 'pip install'
ok = '安装成功!'
i = '-i https://mirrors.aliyun.com/pypi/simple/'
# 创建滚动区域的Canvas对象
canvas = Canvas(root, width=280, height=280, scrollregion=(0, 0, 500, 500))
# 创建可滚动区域的Frame对象并将其添加到Canvas中
frame = Frame(canvas)
frame.bind("<Configure>", lambda e: canvas.configure(scrollregion=canvas.bbox("all")))
canvas.create_window((0, 0), window=frame, anchor="nw")
# 创建Scrollbar对象并将其绑定到Canvas上
scrollbar = Scrollbar(root, orient="vertical", command=canvas.yview)
canvas.configure(yscrollcommand=scrollbar.set)
scrollbar.pack(side="right", fill="y")
# 显示Canvas和Scrollbar
canvas.pack(side="left", fill="both", expand=True)
# def
def open_exe(exe_name):
if os.path.exists(os.path.join(ml, f"{exe_name}.exe")):
os.system(f"start {exe_name}.exe")
else:
messagebox.showerror('pip helper', file_error)
pass
def Numpy():
os.system('pip install numpy -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok)
def scipy():
os.system(f'pip install scipy {i}')
messagebox.showinfo(install, ok)
def sympy():
os.system(f'pip install sympy {i}')
messagebox.showinfo(install, ok)
def pandas():
os.system(f'pip install pandas {i}')
messagebox.showinfo(install, ok)
def fh():
root.destroy()
# Button
bt_n = Button(frame, text='Numpy安装', command=Numpy)
bt_scipy = Button(frame, text='scipy安装', command=scipy)
bt_sympy = Button(frame, text='sympy安装', command=sympy)
bt_pandas = Button(frame, text='pandas安装', command=pandas)
bt_fh = Button(frame, text='返回', command=fh)
# pack and Label
Label(root, text='计算类安装')
bt_fh.pack()
bt_n.pack()
bt_scipy.pack()
bt_sympy.pack()
bt_pandas.pack()
# mainloop
root.title('install')
root.geometry('200x200+10+100')
root.mainloop()

1
not_have Normal file
View File

@@ -0,0 +1 @@
SciPy Pandas SymPy

108
python_jc.py Normal file
View File

@@ -0,0 +1,108 @@
import sys
import os
import urllib.request
import webbrowser
from time import sleep, strftime
ml = os.getcwd()
file_error = '文件丢失,请重新安装!!'
ERROR_MSG = '错误:'
def open_exe(exe_name):
if os.path.exists(os.path.join(ml, f"{exe_name}.exe")):
os.system(f"start {exe_name}.exe")
else:
print(file_error)
sleep(1)
def check_internet(url='http://www.baidu.com/', timeout=5):
try:
urllib.request.urlopen(url, timeout=timeout)
open_exe('client')
return True
except Exception as e:
print(f'{ERROR_MSG}{strftime("%Y-%m-%d %H:%M:%S")}: WIFI连接不正常请检测wifi连接后再试吧')
sleep(5)
print('是否继续启动程序(Y.是N.不是)?')
input_xz = str(input('>>>'))
if input_xz != None:
if input_xz.lower() == 'y':
open_exe('client')
elif input_xz.lower() == 'n':
sys.exit()
else:
print('请输入英文字母!!')
sleep(1.5)
else:
print('错误:没有输入文字')
sleep(1.5)
return False
'''def check_python_installation():
if sys.version_info.major < 3:
python_path = None
# 检查是否有 Python 安装目录
for path in os.environ['PATH'].split(os.pathsep):
python_exe = os.path.join(path, 'python.exe')
if os.path.isfile(python_exe):
python_path = os.path.dirname(python_exe)
break
if python_path:
print(f'{ERROR_MSG}{strftime("%Y-%m-%d %H:%M:%S")}: Python已安装但版本太低请安装 Python 3.x 版本')
webbrowser.open('https://python.org/downloads/')
else:
print(f'{ERROR_MSG}{strftime("%Y-%m-%d %H:%M:%S")}: Python未安装请安装 Python 3.x 版本')
webbrowser.open('https://python.org/downloads/')
print('是否继续启动程序(Y.是N.不是)?')
input_xz = str(input('>>>'))
if input_xz != None:
if input_xz.lower() == 'y':
open_exe('client')
elif input_xz.lower() == 'n':
sys.exit()
else:
print('请输入英文字母!!')
sleep(1.5)
else:
print('错误:没有输入文字,默认退出!')
sleep(1.5)
sys.exit()
else:
python_path = None
for path in os.environ['PATH'].split(os.pathsep):
python_exe = os.path.join(path, 'python.exe')
if os.path.isfile(python_exe):
python_path = os.path.dirname(python_exe)
break
if python_path:
print('自检正常!')
open_exe('client')
else:
print(f'{ERROR_MSG}{strftime("%Y-%m-%d %H:%M:%S")}: Python未安装请安装 Python 3.x 版本')
webbrowser.open('https://python.org/downloads/')
print('是否继续启动程序(Y.是N.不是)?')
input_xz = str(input('>>>'))
if input_xz != None:
if input_xz.lower() == 'y':
open_exe('client')
elif input_xz.lower() == 'n':
sys.exit()
else:
print('请输入英文字母!!')
sleep(1.5)
else:
print('错误:没有输入文字,默认退出!')
sleep(1.5)
sys.exit()'''
if __name__ == '__main__':
check_internet()

View File

@@ -5,26 +5,37 @@ from tkinter import *
from tkinter.scrolledtext import ScrolledText from tkinter.scrolledtext import ScrolledText
import webbrowser import webbrowser
from tkinter import messagebox from tkinter import messagebox
import os
root = Tk() root = Tk()
ml = os.getcwd()
def quit_exe(): def quit_exe():
root.destroy() root.destroy()
def update_now(): def update_now():
webbrowser.open("https://kgithub.com/dengrb1/pip-helper/releases/") '''if os.path.exists(os.path.join(ml, "downloads_update_now.exe")):
messagebox.showinfo('update', '请选择最新版本并下载运行安装程序,然后就可以更新了!') os.startfile("downloads_update_now.exe")
else:
messagebox.showerror('error','错误:文件不存在')'''
messagebox.showerror('update', '在线更新模块正在更新,请以后再试吧')
# Label # Label
update_now_bt = Button(root ,text='在线更新', command=update_now).pack(side=RIGHT) update_now_bt = Button(root ,text='在线更新', command=update_now).pack(side=RIGHT)
quit_bt = Button(root, text='返回', command=quit_exe).pack(side=RIGHT) quit_bt = Button(root, text='返回', command=quit_exe).pack(side=RIGHT)
Label(root, text='更新日志').pack() Label(root, text='更新日志').pack()
text = '''0.1.0 暂无日志 text = '''当前版本:1.7 (Not beta or demo)
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.1 加入机器学习库——openai修复BUG;一键安装所有库正在试验中......
1.3 加入更多GUI库比如pyside6, kivy等等修复一些BUG
当前版本:1.2 (Not beta or demo)''' 1.4 加入pip安装检测加入更多web类库修复一些BUG
1.5 加入更多机器学习库修复一些BUG;修改pip安装检测代
1.5.1 修改pip源让下载速度变得更加快速
1.6 加入更多处理数据库修复一些BUG加入WIFI检测修改更新日志文本放置的位置加入更新pip包管理工具......
1.7 加入pygithub库“在线更新”模块改为正式版修复一些BUG'''
text_box = ScrolledText(root) text_box = ScrolledText(root)
text_box.pack(fill=BOTH, expand=1) text_box.pack(fill=BOTH, expand=1)

View File

@@ -2,45 +2,85 @@ from tkinter import *
from tkinter import messagebox from tkinter import messagebox
import os import os
# 定义内容和创建主窗口
root = Tk() root = Tk()
ml = os.getcwd() ml = os.getcwd()
file_error = '文件丢失,请重新安装' ok2 = '删除成功'
ok2 = '删除完成'
uninstall = 'pip uninstall' uninstall = 'pip uninstall'
file_error = '文件丢失,请重新安装'
# 创建滚动区域的Canvas对象
canvas = Canvas(root, width=280, height=280, scrollregion=(0, 0, 500, 500))
# 创建可滚动区域的Frame对象并将其添加到Canvas中
frame = Frame(canvas)
frame.bind("<Configure>", lambda e: canvas.configure(scrollregion=canvas.bbox("all")))
canvas.create_window((0, 0), window=frame, anchor="nw")
# 创建Scrollbar对象并将其绑定到Canvas上
scrollbar = Scrollbar(root, orient="vertical", command=canvas.yview)
canvas.configure(yscrollcommand=scrollbar.set)
scrollbar.pack(side="right", fill="y")
# 显示Canvas和Scrollbar
canvas.pack(side="left", fill="both", expand=True)
# def
def open_exe(exe_name): def open_exe(exe_name):
if os.path.exists(os.path.join(ml, f"{exe_name}.exe")): if os.path.exists(os.path.join(ml, f"{exe_name}.exe")):
os.system(f"start {exe_name}.exe") os.system(f"start {exe_name}.exe")
else: else:
messagebox.showerror('delete', file_error) messagebox.showerror('delete', file_error)
pass pass
def Requests_remove(): def Requests():
os.system('pip uninstall Requests') os.system('pip uninstall Requests')
messagebox.showinfo('pip uninstall', ok2) messagebox.showinfo('pip uninstall', ok2)
pass pass
def django_remove(): def django():
os.system('pip uninstall django') os.system('pip uninstall django')
messagebox.showinfo(uninstall, ok2) messagebox.showinfo(uninstall, ok2)
pass pass
def fastAPI():
os.system('pip uninstall fastapi')
messagebox.showinfo(uninstall, ok2)
def sanic():
os.system('pip uninstall sanic')
messagebox.showinfo(uninstall, ok2)
def nameko():
os.system('pip uninstall nameko')
messagebox.showinfo(uninstall, ok2)
def pydantic():
os.system('pip uninstall pydantic')
messagebox.showinfo(uninstall, ok2)
def fh(): def fh():
root.destroy() root.destroy()
pass pass
# Button # Button
bt_r = Button(root, text='Requests删除', command=Requests_remove) bt_r = Button(frame, text='requests删除', command=Requests)
bt_d = Button(root, text='django删除', command=django_remove) bt_d = Button(frame, text='django删除', command=django)
bt_fh = Button(root, text='返回', command=fh) bt_fastapi = Button(frame, text='fastAPI删除', command=fastAPI)
bt_sanic = Button(frame, text='sanic删除', command=sanic)
bt_nameko = Button(frame, text='namekos删除', command=nameko)
bt_pydantic = Button(frame, text='pydantic删除', command=pydantic)
bt_fh = Button(frame, text='pydantic删除', command=fh)
#pack and Label # pack and Label
Label(root, text='web类删除').pack() Label(root, text='web类删除').pack()
bt_d.pack() bt_d.pack()
bt_r.pack() bt_r.pack()
bt_fastapi.pack()
bt_sanic.pack()
bt_nameko.pack()
bt_pydantic.pack()
bt_fh.pack() bt_fh.pack()
# mainloop # mainloop
root.title('web') root.title('web')
root.geometry('150x150+400+800') root.geometry('200x230+100+30')
root.mainloop() root.mainloop()

View File

@@ -2,21 +2,39 @@ from tkinter import *
from tkinter import messagebox from tkinter import messagebox
import os import os
# 定义内容和创建主窗口
root = Tk() root = Tk()
ml = os.getcwd() ml = os.getcwd()
ok = '安装完成!' ok = '安装成功'
install = 'pip install'
file_error = '文件丢失,请重新安装' file_error = '文件丢失,请重新安装'
install_1 = 'pip install'
# 创建滚动区域的Canvas对象
canvas = Canvas(root, width=280, height=280, scrollregion=(0, 0, 500, 500))
# 创建可滚动区域的Frame对象并将其添加到Canvas中
frame = Frame(canvas)
frame.bind("<Configure>", lambda e: canvas.configure(scrollregion=canvas.bbox("all")))
canvas.create_window((0, 0), window=frame, anchor="nw")
# 创建Scrollbar对象并将其绑定到Canvas上
scrollbar = Scrollbar(root, orient="vertical", command=canvas.yview)
canvas.configure(yscrollcommand=scrollbar.set)
scrollbar.pack(side="right", fill="y")
# 显示Canvas和Scrollbar
canvas.pack(side="left", fill="both", expand=True)
# def
def Requests(): def Requests():
os.system('pip install Requests') os.system('pip install Requests -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo('pip install', ok) messagebox.showinfo('pip install', ok)
pass pass
def django(): def django():
os.system('pip install django') os.system('pip install django -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install_1, ok) messagebox.showinfo(install, ok)
pass pass
def open_exe(exe_name): def open_exe(exe_name):
if os.path.exists(os.path.join(ml, f"{exe_name}.exe")): if os.path.exists(os.path.join(ml, f"{exe_name}.exe")):
@@ -25,24 +43,45 @@ def open_exe(exe_name):
messagebox.showerror('install', file_error) messagebox.showerror('install', file_error)
pass pass
pass pass
def fastAPI():
os.system('pip install fastapi -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok)
def sanic():
os.system('pip install sanic -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok)
def nameko():
os.system('pip install nameko -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok)
def pydantic():
os.system('pip install pydantic -i https://mirrors.aliyun.com/pypi/simple/')
messagebox.showinfo(install, ok)
def fh(): def fh():
root.destroy() root.destroy()
# button # Button
bt_d = Button(root, text='django安装', command=django) bt_d = Button(frame, text='django安装', command=django)
bt_r = Button(root, text='Requests安装', command=Requests) bt_r = Button(frame, text='Requests安装', command=Requests)
bt_fh = Button(root, text='返回', command=fh) bt_fastapi = Button(frame, text='fastAPI删除', command=fastAPI)
bt_sanic = Button(frame, text='sanic删除', command=sanic)
bt_nameko = Button(frame, text='namekos删除', command=nameko)
bt_pydantic = Button(frame, text='pydantic删除', command=pydantic)
bt_fh = Button(frame, text='返回', command=fh)
# pack
# pack and Label
Label(root, text='web类安装').pack() Label(root, text='web类安装').pack()
bt_d.pack() bt_d.pack()
bt_r.pack() bt_r.pack()
bt_d.pack()
bt_r.pack()
bt_fastapi.pack()
bt_sanic.pack()
bt_nameko.pack()
bt_pydantic.pack()
bt_fh.pack() bt_fh.pack()
# mainloop # mainloop
root.title('web') root.title('web')
root.geometry('150x150') root.geometry('200x250+600+400')
root.mainloop() root.mainloop()

View File

@@ -0,0 +1,46 @@
from tkinter import *
from tkinter import messagebox
import os
root = Tk()
ml = os.getcwd()
file_error = '文件丢失,请重新安装'
ok2 = '删除完成'
uninstall = 'pip uninstall'
def open_exe(exe_name):
if os.path.exists(os.path.join(ml, f"{exe_name}.exe")):
os.system(f"start {exe_name}.exe")
else:
messagebox.showerror('delete', file_error)
pass
def Requests_remove():
os.system('pip uninstall Requests')
messagebox.showinfo('pip uninstall', ok2)
pass
def django_remove():
os.system('pip uninstall django')
messagebox.showinfo(uninstall, ok2)
pass
def fh():
root.destroy()
pass
# Button
bt_r = Button(root, text='Requests删除', command=Requests_remove)
bt_d = Button(root, text='django删除', command=django_remove)
bt_fh = Button(root, text='返回', command=fh)
#pack and Label
Label(root, text='web类删除').pack()
bt_d.pack()
bt_r.pack()
bt_fh.pack()
# mainloop
root.title('web')
root.geometry('150x150+400+800')
root.mainloop()

View File

@@ -1,48 +0,0 @@
from tkinter import *
from tkinter import messagebox
import os
# 定义内容和创建主窗口
root = Tk()
ml = os.getcwd()
ok = '安装成功'
install = 'pip install'
file_error = '文件丢失,请重新安装'
# 创建滚动区域的Canvas对象
canvas = Canvas(root, width=280, height=280, scrollregion=(0, 0, 500, 500))
# 创建可滚动区域的Frame对象并将其添加到Canvas中
frame = Frame(canvas)
frame.bind("<Configure>", lambda e: canvas.configure(scrollregion=canvas.bbox("all")))
canvas.create_window((0, 0), window=frame, anchor="nw")
# 创建Scrollbar对象并将其绑定到Canvas上
scrollbar = Scrollbar(root, orient="vertical", command=canvas.yview)
canvas.configure(yscrollcommand=scrollbar.set)
scrollbar.pack(side="right", fill="y")
# 显示Canvas和Scrollbar
canvas.pack(side="left", fill="both", expand=True)
# def
def open_exe(exe_name):
if os.path.exists(os.path.join(ml, f"{exe_name}.exe")):
os.system(f"start {exe_name}.exe")
else:
messagebox.showerror('delete', file_error)
pass
def Requests_remove():
os.system('pip uninstall Requests')
messagebox.showinfo('pip uninstall', ok2)
pass
def django_remove():
os.system('pip uninstall django')
messagebox.showinfo(uninstall, ok2)
pass
def fh():
root.destroy()
pass

View File

@@ -0,0 +1,48 @@
from tkinter import *
from tkinter import messagebox
import os
root = Tk()
ml = os.getcwd()
ok = '安装完成!'
file_error = '文件丢失,请重新安装'
install_1 = 'pip install'
def Requests():
os.system('pip install Requests')
messagebox.showinfo('pip install', ok)
pass
def django():
os.system('pip install django')
messagebox.showinfo(install_1, ok)
pass
def open_exe(exe_name):
if os.path.exists(os.path.join(ml, f"{exe_name}.exe")):
os.system(f"start {exe_name}.exe")
else:
messagebox.showerror('install', file_error)
pass
pass
def fh():
root.destroy()
# button
bt_d = Button(root, text='django安装', command=django)
bt_r = Button(root, text='Requests安装', command=Requests)
bt_fh = Button(root, text='返回', command=fh)
# pack and Label
Label(root, text='web类安装').pack()
bt_d.pack()
bt_r.pack()
bt_fh.pack()
# mainloop
root.title('web')
root.geometry('150x150')
root.mainloop()