I'm using cython
to convert my python file into c file, but when I tried to compile the c file, it failed for me.
Python.h: No such file or directory
#include "Python.h"
^
compilation terminated.
I read this post: Cython Fatal Error: Python.h No such file or directory
But I can't understand it. I tried using #include <Python.h>
instead of #include "Python.h
it also failed for me.
Any solution? Thank you.