This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I have a problem trying to get a one-dir python application using pyinstaller. I edited the .spec file to add some files I needed. # -*- mode: python -*- a = Analysis(['main.py'], pathex=['/Users/mazzalex02/GAME'], hiddenimports=[], hookspath=None, runtime_hooks=None) pyz = PYZ(a.pure) exe = EXE(pyz, a.scripts, exclude_binaries=True, name='main', debug=False, strip=None, upx=True, console=True) font [...] read more