E7030 Stdlib Validation Errors
command-not-found
command or executable not found
When this occurs
os.exec() or os.exec_output() cannot find the specified command
Example error message
error[E7030]:
os.exec(): command not found: 'nonexistent_command'
How to fix
Verify the command exists and is in your PATH. Use the full path to the executable if needed.