today update

This commit is contained in:
dengrb1 2023-07-25 23:59:27 +08:00 committed by GitHub
parent 994d4cc179
commit fa115b8b32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 57 additions and 7 deletions

View File

@ -75,6 +75,7 @@ bt_fh = Button(frame, text='返回', command=fh)
# pack and Label
Label(root, text='GUI删除').pack()
bt_fh.pack()
bt_qt.pack()
bt_pyside.pack()
bt_kivy.pack()
@ -84,7 +85,7 @@ bt_seaborn.pack()
bt_flexx.pack()
bt_pysimpleGUI.pack()
bt_wx.pack()
bt_fh.pack()
# mainloop

View File

@ -72,6 +72,7 @@ bt_fh = Button(frame, text='返回', command=fh)
# pack and Label
Label(root, text="GUI").pack()
bt_fh.pack()
bt_qt.pack()
bt_pyside.pack()
bt_kivy.pack()
@ -81,7 +82,7 @@ bt_seaborn.pack()
bt_flexx.pack()
bt_pysimpleGUI.pack()
bt_wx.pack()
bt_fh.pack()
# mainloop

View File

@ -81,6 +81,7 @@ bt_fh = Button(frame, text='返回', command=fh)
# pack
Label(root, text='机器学习类库删除').pack()
bt_fh.pack()
bt_TensorFlow.pack()
bt_pytorch.pack()
bt_keras.pack()
@ -91,7 +92,7 @@ bt_pyttsx.pack()
bt_pylatex.pack()
bt_scikit_learn.pack()
bt_openai.pack()
bt_fh.pack()
# mainloop

View File

@ -81,6 +81,7 @@ bt_fh = Button(frame, text='返回', command=fh)
# pack
Label(root, text='机器学习类库安装').pack()
bt_fh.pack()
bt_tensorFlow.pack()
bt_pytorch.pack()
bt_keras.pack()
@ -91,7 +92,7 @@ bt_XGBoost.pack()
bt_pyttsx.pack()
bt_pylatex.pack()
bt_openai.pack()
bt_fh.pack()
# mainloop

View File

@ -36,7 +36,7 @@ def open_exe(exe_name):
messagebox.showerror('pip helper', file_error)
pass
def Numpy():
os.system('pip uninstall numpy')
os.system(f'pip uninstall numpy')
messagebox.showinfo(uninstall, ok)
def scipy():
os.system(f'pip uninstall scipy')
@ -47,6 +47,15 @@ def sympy():
def pandas():
os.system(f'pip uninstall pandas')
messagebox.showinfo(uninstall, ok)
def pyomo():
os.system(f'pip uninstall pyomo')
messagebox.showinfo(uninstall, ok)
def gpy():
os.system(f'pip uninstall gpy')
messagebox.showinfo(uninstall ,ok)
def pydy():
os.system(f'pip uninstall pydy')
messagebox.showinfo(uninstall ,ok)
def fh():
root.destroy()
@ -56,6 +65,9 @@ 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_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
@ -65,6 +77,9 @@ bt_n.pack()
bt_scipy.pack()
bt_sympy.pack()
bt_pandas.pack()
bt_pyomo.pack()
bt_gpy.pack()
bt_pydy.pack()
# mainloop

View File

@ -47,6 +47,15 @@ def sympy():
def pandas():
os.system(f'pip install pandas {i}')
messagebox.showinfo(install, ok)
def pyomo():
os.system(f'pip install pyomo {i}')
messagebox.showinfo(install ,ok)
def gpy():
os.system(f'pip install gpy {i}')
messagebox.showinfo(install ,ok)
def pydy():
os.system(f'pip install pydy {i}')
messagebox.showinfo(install ,ok)
def fh():
root.destroy()
@ -56,6 +65,9 @@ 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_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
@ -65,6 +77,9 @@ bt_n.pack()
bt_scipy.pack()
bt_sympy.pack()
bt_pandas.pack()
bt_pyomo.pack()
bt_gpy.pack()
bt_pydy.pack()
# mainloop

View File

@ -71,13 +71,14 @@ bt_fh = Button(frame, text='pydantic删除', command=fh)
# pack and Label
Label(root, text='web类删除').pack()
bt_fh.pack()
bt_d.pack()
bt_r.pack()
bt_fastapi.pack()
bt_sanic.pack()
bt_nameko.pack()
bt_pydantic.pack()
bt_fh.pack()
# mainloop

View File

@ -70,6 +70,7 @@ bt_fh = Button(frame, text='返回', command=fh)
# pack
Label(root, text='web类安装').pack()
bt_fh.pack()
bt_d.pack()
bt_r.pack()
bt_d.pack()
@ -78,7 +79,7 @@ bt_fastapi.pack()
bt_sanic.pack()
bt_nameko.pack()
bt_pydantic.pack()
bt_fh.pack()
# mainloop

14
没有使用/taskkill.pyw Normal file
View File

@ -0,0 +1,14 @@
import os
import platform
from time import time
import sys
t = 'taskkill -f -t -im '
def Linux():
system = platform.system()
if system == 'Linux':
pass
elif system == 'Windows':
os.system(t + 'client.exe')
os.system()