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

1

There are 1 best solutions below

2
On

You may need to specify the, current, python executable and also the full path to the file you want to run, like so:

import shutil # Add also this import

# Get Current files full path
project_root  = os.path.dirname(os.path.realpath(__file__))

# Build full path to the proccess_1 file.
process_1_path = os.path.join(project_root, 'process_1.py')

# Get path to python executable
py_bin = shutil.which("python")

# Run the file and wait for it to finish.
# subprocess.run([py_bin, process_1_path ])

# Run the file in background and continue this script's execution
main_code_process = subprocess.Popen([py_bin, process_1_path ])