Is there a quiet version of subprocess.call? February 17, 2023 by Tarik Yes. Redirect its stdout to /dev/null. process = subprocess.call(["my", "command"], stdout=open(os.devnull, 'wb'))