0

当我执行安装脚本时,我得到以下信息:

creating build/temp.macosx-10.6-intel-3.3/extensions/data
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -fno-strict-aliasing -fno-common -dynamic -DNDEBUG -g -O3 -arch i386 -arch x86_64 -Ilibastro-3.7.5 -I/Library/Frameworks/Python.framework/Versions/3.3/include/python3.3m -c extensions/_libastro.c -o build/temp.macosx-10.6-intel-3.3/extensions/_libastro.o
In file included from extensions/_libastro.c:3:
/Library/Frameworks/Python.framework/Versions/3.3/include/python3.3m/Python.h:25:10: fatal error: 
      'stdio.h' file not found
#include <stdio.h>
         ^
1 error generated.
error: command '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang' failed with exit status 1

有什么线索吗?谢谢

4

2 回答 2

0

.h文件是一个基本的 C 标准库文件,因此它的缺失表明您的问题可能是您缺少系统 C 编译器的完整安装。尝试安装我认为您可以在此处找到的 Xcode 命令行工具:

https://developer.apple.com/xcode/

一个类似的 Stack Overflow 提问者发现,从源代码构建 Python 本身也有必要:

Mac OS X 10.7.5 上的致命错误“stdio.h”Python 2.7.3

更新:以下命令也可能有帮助,所以这里以防万一:

http://www.bitemyapp.com/post/os-x-fsevent-fatal-error-stdio-h-file-not-found/

于 2013-09-15T13:54:50.430 回答
0

与其尝试调试您报告的错误,不如使用它可能更容易:

sudo pip install pyephem

如果您还没有pip安装,您应该使用easy_install安装它,但您也可以使用安装说明中推荐的其他命令安装它:

sudo easy_install ephem
于 2013-09-15T06:51:09.423 回答