pip helper

This commit is contained in:
dengrb1 2023-04-27 21:59:14 +08:00 committed by GitHub
parent 98e2733e2e
commit c875ba5e11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ file_error = '文件丢失,请重新安装'
def windows_run():
if os.path.exists("{ml}\system_cz.exe"):
os.system('start {ml}\system_cz.exe')
os.system('start {ml}\windows\system_cz.exe')
else:
messagebox.showerror('system', '文件丢失,请重新安装')
pass
@ -21,7 +21,7 @@ def windows_run():
def Not_windows_run():
if os.path.exists('{ml}\system_command.exe'):
os.system('.\{ml}\system_command.pyw')
os.system('.\{ml}\Not\system_command.pyw')
else:
messagebox.showerror('system', file_error)
pass