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(错误的选择?),现在我明白了。我现在不知道该怎么办。

最佳答案

在升级到XCode 4之后,这发生在我身上。我没有时间弄清楚升级过程中出了什么问题(或者这是否是预期的行为),但是以下变通办法对我有效:

sudo env ARCHFLAGS="-arch i386" easy_install whatever
ARCHFLAGS技巧也可以与setup.py一起使用:
env ARCHFLAGS="-arch i386 -arch x86_64" python setup.py install

10-06 08:41