How to build Python into a C++ .exe
I have a c++ application and would like to take advantage开发者_StackOverflow社区 of one of pythons libraries. I have seen info on how to run the python interpreter inside the program, however I want the program to be self-sufficient, so I can run it on any windows computer, even if it does not have python. How can i compile the python into the c++ .exe? Thanks
You can't. You must have the DLL.
精彩评论