I'm trying to embed python, and provide the dll and a zip of the python libraries and not use any installed python. That is, if a user doesn't have python, I want my code to work using the provided dll/zip.
This post seems to describe the process, except it isn't working for me.
If I run the following, my code will run as long as I have Python27.dll and a folder named Python27 that contains the DLL and Lib folders.
Py_SetProgramName(argv[0]); /* optional but recommended */
Py_SetPythonHome("Python27");
Py_Initialize();
If I remove the Python27 folder, the code fails - so I am pulling in the local copy, not any installed python.
However, if I zip the local Python27 folder, the code stops running, giving "ImportError: No module named site".
PEP273 makes it sound like this should just work, but everything I've tried has failed.
Can anyone shed light on how to get embedded python to run from a zip file?
Given that there are related questions that have gone unanswered, I think it would be helpful if people would add a comment if they have successfully gotten reading from a zip file working, even if they aren't sure what I might need to fix.
That would at least help me understand if I should keep looking for an answer!
Update: No matter what I try (even with LoadLibrary as suggested), I can run my program from a fully unzipped directory. Any time I remove the directory with DLLs/* and Lib/* and put in Python27.zip instead, I just get
ImportError: No module named site