1
我只是試圖讓這個編譯來繼續並做實際的代碼,但每當我嘗試編譯它說fatal error: Python.h: No such file or directory
我已經嘗試了一切,仍然。我使用NetBeans和在「附加庫目錄」我把C:/Python27/libs
和「包含目錄」我把C:/Python27/include
Python.h沒有找到它存在時Windows
#include <iostream>
#include <Python.h>
using namespace std;
int main(int argc, char** argv) {
cout << "Hello World!";
return 0;
}
可能重複的[Python.h編譯器問題](http://stackoverflow.com/questions/7125522/python-h-compiler-issue) – dpl47