pip 在 Mac OS X Mavericks (10.9) 上引发 stdio.h not found 错误

Posted

技术标签:

【中文标题】pip 在 Mac OS X Mavericks (10.9) 上引发 stdio.h not found 错误【英文标题】:pip raises stdio.h not found error on Mac OS X Mavericks (10.9) 【发布时间】:2014-06-27 17:25:16 【问题描述】:

此时我已经尝试了无数解决方案,但似乎没有任何效果。我正在尝试安装 mysql-python,但是 numpy 和其他需要 gcc 的软件包也会发生这种情况:

building '_mysql' extension

gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.6.sdk -g -O2 -DNDEBUG -g -O3 -Dversion_info=(1,2,5,'final',1) -D__version__=1.2.5 -I/usr/local/mysql/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c _mysql.c -o build/temp.macosx-10.6-intel-2.7/_mysql.o -Os -g -fno-strict-aliasing -arch x86_64

In file included from _mysql.c:29:

/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/Python.h:33:10: fatal error: 'stdio.h' file not found

#include <stdio.h>

         ^

1 error generated.

error: command 'gcc-4.2' failed with exit status 1

到点:

我已经安装了命令行工具

添加了从 /usr/bin/gcc 到 /usr/bin/gcc-4.2 的符号链接

gcc-4.2 --version
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 5.1 (clang-503.0.40) (based on LLVM 3.4svn)
Target: x86_64-apple-darwin13.1.0
Thread model: posix

创建了一个dummy c文件,编译成功,运行,gcc本身就可以了

$ cat a.c
#include <stdio.h>

main()

    printf("hello\n");


$ gcc-4.2 a.c
a.c:3:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
main()
^~~~
1 warning generated.

$ ./a.out
hello

为了更好的衡量,

$ xcode-select -p
/Library/Developer/CommandLineTools

这是怎么回事?!

编辑 - 忘记包含 python 版本

$ python
Python 2.7.2 (v2.7.2:8527427914a2, Jun 11 2011, 15:22:34)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin

编辑 - 令人兴奋的发展。设置这些变量会取得一些进展:

$ export CFLAGS="-arch i386 -arch x86_64"
$ export FFLAGS="-m32 -m64"
$ export LDFLAGS="-Wall -undefined dynamic_lookup -bundle -arch i386 -arch x86_64"
$ export CC=gcc-4.2
$ export CXX="g++ -arch i386 -arch x86_64"

但它再次失败

gcc-4.2 -bundle -undefined dynamic_lookup -isysroot /Developer/SDKs/MacOSX10.6.sdk -isysroot /Developer/SDKs/MacOSX10.6.sdk -g -Wall -undefined dynamic_lookup -bundle build/temp.macosx-10.6-intel-2.7/_mysql.o -L/usr/local/mysql/lib -lmysqlclient_r -o build/lib.macosx-10.6-intel-2.7/_mysql.so -arch x86_64

ld: library not found for -lSystem

clang: error: linker command failed with exit code 1 (use -v to see invocation)

error: command 'gcc-4.2' failed with exit status 1

我怀疑这是与命令工具有关的类似错误。另外,为什么要使用“/Developer/SDKs/MacOSX10.6.sdk”? (请原谅菜鸟问题,我正在尝试从 vim/unix 迁移到 pycharm/mac,但到目前为止进展并不顺利:()

【问题讨论】:

您使用 2.7.2 有什么原因吗?我以为 10.9 附带 2.7.4。?你 brew install python 了吗? 我是从雪豹升级的,我猜小牛实际上并没有升级Python?我没有手动安装。 我会尝试安装 brew。然后做一个 brew install python 。它将安装 pip。它还会告诉您命令行工具是否已过时并帮助您解决问题。希望它能让 OS X 上的事情变得不那么棘手。 @wegry 我对此感到非常沮丧,我暂时放弃了它,但我又试了一次,这成功了。非常感谢!!! 【参考方案1】:

从 Mojave 开始 xcode-select --install 是不够的,你还应该安装可以在 /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg 找到的包。来源:https://forums.developer.apple.com/thread/104296

【讨论】:

这对我也有用,我想知道为什么它现在是可选安装?【参考方案2】:

这对我有用

xcode-select --install

【讨论】:

【参考方案3】:

正如上面提到的@wegry——

brew install python

确认

$ which python
/usr/local/homebrew/bin/python

只是让它完全消失了。用pip成功安装numpy和mysql-python!

【讨论】:

我想我在工具链中做了一些更改(通过 xcode 处理它们的方式非常混乱......),brew upgrade python 为我解决了问题!我猜它选择了自第一次安装 python 以来设置的新路径..

以上是关于pip 在 Mac OS X Mavericks (10.9) 上引发 stdio.h not found 错误的主要内容,如果未能解决你的问题,请参考以下文章

Mac OS X安装 Scrapy

在 OS X 10.9 (Mavericks) 上安装 Java

转OS X Mavericks: 防止 Mac 进入睡眠 -- 不错

无法更新 Macports(使用 Mac OS X Mavericks)

Mavericks 上的 OS X 服务器是不是需要单独的 Mac

为啥 apt-get 功能在 Mac OS X v10.9 (Mavericks) 的终端中不起作用?