Führen Sie ein Python -Skript aus einem anderen Python -Skript auf einem Raspberry Pi aus

import subprocess
import sys

results = subprocess.run(["sys.executable", "MyPythonScriptName.py"])
Rocku0