diff --git a/start.py b/start.py index b592e5b..d3eb64f 100644 --- a/start.py +++ b/start.py @@ -27,6 +27,7 @@ def check_python_version(): except subprocess.CalledProcessError: raise Exception("Neither 'python' nor 'python3' found in your system.") + selected_python_command = check_python_version() print(f"launching with the command: {selected_python_command}") -subprocess.call(['python', '-m', 'piemc']) +subprocess.call(['python', '-m', 'piemc']) \ No newline at end of file