#include <stdio.h>
#include <Python.h>
int main(int argc, char * argv[])
{
    // initialize the interpreter
    Py_Initialize();
    // evaluate some code
    PyRun_SimpleString("import sys\n");
    //ignore line wrap on following line
    PyRun_SimpleString("sys.stdout.write('Hello from an embedded Python Script\\n')\n");
    // shut down the interpreter
    Py_Finalize();
    return 0;
}
 


a.c:2:10: fatal error: Python.h: No such file or directory
 #include <Python.h>
          ^~~~~~~~~~
compilation terminated.


왜 이런식으로 오류 나나요 파이썬 설치했는데