以下脚本适用于 Windows,但对于 Ubuntu,它仅在 Python shell 上有效,当我在脚本中运行代码时,它没有检测到 chrome 进程。非常感谢您的帮助。这里我...
以下脚本适用于 Windows,但对于 Ubuntu,它仅在 Python shell 上有效,当我在脚本中运行代码时,它没有检测到 chrome 进程。非常感谢您的帮助。这是我的代码:
def kill_processes():
print('Process killing started...')
proc_list = []
for proc in psutil.process_iter():
if "chrome" in proc.name().lower() or "uc_driver" in proc.name().lower():
proc_list.append(proc)
proc.terminate()
print(proc)
time.sleep(1) # Adjust timing as needed
if proc.is_running():
proc.kill()
gone, alive = psutil.wait_procs(
proc_list, timeout=3) # Adjust timing as needed
for proc in alive:
proc.kill()