If it runs ok on CI then Gitlab CI has everything it needs so missing opengl DLL isn’t the issue. The fault is definitely somewhere in the PyInstaller-ing part. Can you clarify what you are doing? It looks you are using PyInstaller in a docker image on CI, then downloading the executable and testing it locally - is that right? You’re not trying to test the executable on CI?
I’d still guess the issue is missing binaries related - probably a DLL that PyInstaller fails to collect. You can use psutil to work out which binaries your code needs: # Put me at the end of your code.import pustil print(psutil.Process().memory_maps()) Then compare the output with what PyInstaller includes in your bundle. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/cad387ed-7774-4107-8450-8279b0f611f8n%40googlegroups.com.
