这是我的代码
#include <Python/Python.h>
using namespace std;
int main(int argc, char *argv[])
{
Py_SetProgramName(argv[0]);
Py_Initialize();
PyRun_SimpleString("print 1\n");
Py_Finalize();
return 0;
}
但出了点问题:
并且gcc my_python.c -o my_python -I/usr/include/python2.7/ -lpython2.7
运行良好。我可以尝试在xcode中调用python吗?