bash-3.2$ sudo easy_install appscript
Password:
Searching for appscript
Reading http://pypi.python.org/simple/appscript/
Reading http://appscript.sourceforge.net
Best match: appscript 1.0.0
Downloading http://pypi.python.org/packages/source/a/appscript/appscript-1.0.0.tar.gz#md5=6619b637037ea0f391f45870c13ae38a
Processing appscript-1.0.0.tar.gz
Running appscript-1.0.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-C4d1az/appscript-1.0.0/egg-dist-tmp-yVTHww
/usr/libexec/gcc/powerpc-apple-darwin10/4.2.1/as: assembler (/usr/bin/../libexec/gcc/darwin/ppc/as or /usr/bin/../local/libexec/gcc/darwin/ppc/as) for architecture ppc not installed
Installed assemblers are:
/usr/bin/../libexec/gcc/darwin/x86_64/as for architecture x86_64
/usr/bin/../libexec/gcc/darwin/i386/as for architecture i386
我是一个相当大的菜鸟(我已经学会了使用python和unix一点,但我从来没有处理安装。)早些时候我得到一个与gcc-4.2相关的错误没有被发现,我发现一些帖子建议重新安装XCode。我选择4.0(糟糕的选择?)现在我明白了。我不知道该做什么。
答案 0 :(得分:78)
升级到XCode 4之后发生了这种情况;我没有时间弄清楚升级过程中出了什么问题(或者这是否是预期的行为),但以下解决方法对我有用:
sudo env ARCHFLAGS="-arch i386" easy_install whatever
ARCHFLAGS
技巧也适用于setup.py
:
env ARCHFLAGS="-arch i386 -arch x86_64" python setup.py install
答案 1 :(得分:15)
我找到了另一种解决方案here,它可以一劳永逸地解决问题。事实证明,XCode4仍然具有ppc汇编程序。你只需要在正确的位置使用符号链接:
$ sudo ln -s /Developer/Platforms/iPhoneOS.platform/Developer/usr/libexec/gcc/darwin/ppc /Developer/usr/libexec/gcc/darwin
$ sudo ln -s /Developer/Platforms/iPhoneOS.platform/Developer/usr/libexec/gcc/darwin/ppc /usr/libexec/gcc/darwin
修复了在Snow Leopard上安装XCode4的问题。
编辑:我尝试了其他解决方案,这些解决方案在某些情况下有效,但总是遇到一个在某处硬编码PPC要求的软件包。提供PPC汇编程序可以一劳永逸地解决所有这些问题。
答案 2 :(得分:1)
对我来说,关键是ppc汇编程序,而不是ARCHFLAGS的东西。但是,上面的建议没有奏效;我没有这些位置的文件。但是通过一些修修补补,我发现我确实在/usr/bin/as
处有ppc声明。我第一次尝试sudo ln -s /usr/bin/as /usr/libexec/as/ppc/as
,但失败了(有些东西不能分叉进程...... ??)。所以我最终只是做了sudo cp /usr/bin/as /usr/libexec/as/ppc/as
,这很有用(我想我也必须在这条路上做一些sudo mkdir
。
答案 3 :(得分:0)
在Mac OS X 10.6上使用Pythons系统,您需要安装Apple Xcode Developer Tools中的gcc-4.2来构建扩展模块,就像使用Appscript一样。其他产品可能需要Xcode gcc-4.0,所以你应该安装它们。他们共存很好。