Hi there,
my python program is compiling fine and running fine when executed through a command line or batch file or even a test program. However, when trying to integrate it into a larger application it simply won't start. I downloaded DebugView to see what was happening because it was obvious the exe was opening but not running.
What I found was that as the internal python interpreter was unpacked and started, it ran into a fatal Python error: failed to get random numbers to initialize Python.
Has anyone run into this before? I think it is happening because we are running this app through a custom executable framework that changes some of the env variables. Realistically I am wondering if I can write a hook to set this env variable back to what it should be before the python interpreter starts.
Thanks for any help!