I keep getting this error when running a python script:
External program failed with exit code 112; path=C:\Windows\py.exe; args="ProjectPython.py"; workdir=C\Public Folders\Default\16.Porject Python X
Location: action "Run program", table "Imported table 1"
the python runs properly executed via command or simple using sublime, but always gets this error in EasyMorph Server.
Exit code 112 usually means "There is not enough space on the disk" (ERROR_DISK_FULL 112 (0x70)). Without more details about the script or the environment, it is hard to determine what exactly is happening.
Does the script create temporary files, unzip files, generate logs, or write large intermediate files?
Any additional details about the data volume and the kinds of operations the script performs could also be helpful.
Just to clarify, ‘Run external program’ simply starts the specified executable with the provided arguments and working directory, under the Windows account the EasyMorph worker/service is running as. So if it behaves differently from a manual run, the cause is usually the execution context - account, environment variables, permissions, resolved Python installation, or working directory.