I'm trying to write some C code on my Raspberry Pi (running Raspbian) that will call a Python script. The Python docs I've found indicate that I need to include the Standard Library in my C code via one of its headers (Python.h). The library is needed to call the Python interpreter from the C code. The docs say...
The Python installers for the Windows platform usually includes the entire standard library and often also include many additional components. For Unix-like operating systems Python is normally provided as a collection of packages, so it may be necessary to use the packaging tools provided with the operating system to obtain some or all of the optional components.
I've tried searching for the library via apt-get, but, have come up empty. I've also installed pip figuring I might find the library via that route. I can't compile my code without the library. Can someone point me to where/how I can get access to the library so that I can embed a Python script into my C code?