import time
import subprocess
import os
import runpy
subprocess.run(['python', 'process_1.py'],)
# subprocess.call(['python', 'process_1.py'],)
# os.system('python process_1.py')
# runpy.run_path(path_name='process_1.py')
# exec(open("process_1.py").read())
# rest of my code
I have tried all of commented functions but no one is working
You may need to specify the, current, python executable and also the full path to the file you want to run, like so: