I'm trying to figure out how can I execute Python code in a C++ program. Where, The C++ program will be a static Executable which will run on systems where python is NOT installed. But it can execute Python code without Python having to be installed on the System it's running on.
I looked onto embedding the python interpreter within my Program. I found this link
Embedding Python in Another Application. But the file Python.h
is not found anywhere on my system (Python 3.7). I really need help on this. What can I do to achieve this?