I converted my python program into c code with Cython. Now I'm having trouble compiling it with the MS Visual studio compiler. I'm getting the error
C:\Python34\include\pyconfig.h(68) : fatal error C1083:
Cannot open include file: 'io.h': No such file or directory
I'm running the command from the conosle
cl /c main.c /nologo /Ox /MD /W3 /GS- /DNDEBUG
-Ic:\Python34\include -Ic:\Python34\PC /link /OUT:"main.exe"
INCLUDEenvironment variable set to the MSVC include directory? e.g.C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDEC:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE? Yes, I just tried that. I get the same error..