I got an installation script that calls gcc and gcc tries to compile a .c file that includes a header that does not exist on my system (ubuntu) .
#include "Python.h"
I have both python 2.x and python 3.x installed but running a
sudo find / -name "Python.h"
gives back no results. I suspect that it might not be bundled with python binaries. Did anyone have to solve something similar to this?Thank you.