PIL安装失败丢失:STDARG.H

问题描述:

Possible Duplicate:
Installing Python Imaging Library (PIL) on Snow Leopard with updated Python 2.6.2PIL安装失败丢失:STDARG.H

乳宁MAC 10.7.2尝试安装PIL,解决许多问题的gcc后,安装退出这一行:

/Developer/SDKs/MacOSX10.6.sdk/usr/include/stdarg.h:4:25: error: stdarg.h: No such file or directory

我是使用这一行安装:

env ARCHFLAGS="-arch i386 -arch x86_64" easy_install PIL 

全输出:

WARNING: '' not a valid package name; please use only.-separated package names in setup.py --- using frameworks at /System/Library/Frameworks In file included from /Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/unicodeobject.h:4, from /Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/Python.h:85, from _imaging.c:75: /Developer/SDKs/MacOSX10.6.sdk/usr/include/stdarg.h:4:25: error: stdarg.h: No such file or directory _imaging.c:3017: warning: initialization from incompatible pointer type _imaging.c:3077: warning: initialization from incompatible pointer type In file included from /Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/unicodeobject.h:4, from /Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/Python.h:85, from _imaging.c:75: /Developer/SDKs/MacOSX10.6.sdk/usr/include/stdarg.h:4:25: error: stdarg.h: No such file or directory _imaging.c:3017: warning: initialization from incompatible pointer type _imaging.c:3077: warning: initialization from incompatible pointer type lipo: can't figure out the architecture type of: /var/folders/2l/nrkm12097b58kk8n9hrbtz840000gn/T//cckCPEox.out error: Setup script exited with error: command 'gcc-4.2' failed with exit status 1

+2

恐怕没有一个可以帮助我。并且从2011年5月开始有更新,指出该解决方案不适用于10.7。我还注意到人们在过去几天中报告了这个问题...... – 2012-01-12 09:20:32

问题解决了,步骤我了:

第1步:卸载并安装Xcode的,这里建议: http://binarylionstudios.com/blog/2011/01/30/error-stdarg.h-no-such-file-or-directory/

删除的Xcode properlly遵循这样的回答: How to fully remove Xcode 4

sudo /Developer/Library/uninstall-devtools --mode=all

使用安装Xcode.app后重新启动您的mac

第2步:的Xcode后重新安装,安装失败

unable to execute gcc-4.2: No such file or directory PIL

解决,我跟着这个帖子: http://aravir-rose.blogspot.com/2011/12/installing-python-27s-imaging-library.html

祝你好运!