使用 xcode 4 在 mac 10.6.8 上安装 python 模块时出现问题
到目前为止,我在 PIL 和 reportlab 上遇到了这个问题。问题是安装失败
error: command 'gcc-4.2' failed with exit status 1
,我在本文档中找到了修复方法 paikialog
问题是,
为什么 ARCHFLAGS="-arch i386 -arch x86_64" 解决问题吗? 它在做什么? 我怎样才能在全球范围内强制执行此操作,这样我就不必每次尝试添加需要编译的模块时都使用它?
ive had this issue with PIL and reportlab so far. the issue is that the install fails with
error: command 'gcc-4.2' failed with exit status 1
i've found a fix, in this document paikialog
question is,
why does the
ARCHFLAGS="-arch i386 -arch x86_64"
fix the issue?
whats it doing?
and how can i force that globally so i dont have to use it every time i try to add a module that needs compiling?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
解释是 这里。您可以通过安装 Xcode 3 而不是 Xcode 4 来避免该问题。或者,更好的是,您可以通过安装另一个不包含 PPC 架构的 Python 实例来避免该问题;一个不错的选择是当前的来自 python.org 的 Python 2.7.2 64-/32 位安装程序 。
The explanation is here. You could avoid the problem by installing Xcode 3 instead of Xcode 4. Or, better, you can avoid the problem by installing another Python instance that does not include the PPC arch; a good choice is the current Python 2.7.2 64-/32-bit installer from python.org.
我建议使用 MacPorts 它允许简单安装几乎所有可用的 python 库。
I suggest using MacPorts which allows the simple installation of almost all available python libraries.