I need to write python interface wrappers around some C functions, which requires the Python.h header file. I want to make sure I get the correct Python.h.
I'm working in CentOS 6.6 and decided to use Python 3.4 so as to avoid using the OS's python distribution. Online sources suggest getting the correct Python.h from python34-devel , but this package is not available for Centos 6, even through the EPEL repository. Also, I was forced to compile and install python from source, and this thread seems to suggest python34-devel might not even be helpful in this case.
How do I find the right Python.h so that I can compile C libraries for my Python configuration?
thanks in advance