How to run another Python program without holding up original [duplicate] April 9, 2023 by Tarik Use subprocess: import subprocess #code prog = subprocess.Popen(['python', filename, args]) #more code