无法使用XCode4在OSX 10.6.7上安装psycopg2

时间:2011-03-25 00:12:20

标签: python install xcode4 psycopg2 pip

尝试在OSX上安装psycopg2会产生以下结果:

building 'psycopg2._psycopg' extension

creating build/temp.macosx-10.6-universal-2.6

creating build/temp.macosx-10.6-universal-2.6/psycopg

gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -DNDEBUG -g -fwrapv -Os -Wall -Wstrict-prototypes -DENABLE_DTRACE -arch i386 -arch ppc -arch x86_64 -pipe -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.4 (dt dec pq3 ext)" -DPG_VERSION_HEX=0x090003 -DPSYCOPG_EXTENSIONS=1 -DPSYCOPG_NEW_BOOLEAN=1 -DHAVE_PQFREEMEM=1 -I/System/Library/Frameworks/Python.framework/Versions/2.6/include/python2.6 -I. -I/usr/local/Cellar/postgresql/9.0.3/include -I/usr/local/Cellar/postgresql/9.0.3/include/server -c psycopg/psycopgmodule.c -o build/temp.macosx-10.6-universal-2.6/psycopg/psycopgmodule.o

/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

psycopg/psycopgmodule.c:1009: fatal error: error writing to -: Broken pipe

compilation terminated.

lipo: can't open input file: /var/folders/zf/zfsYTD29GwSWm+UDcF6VxE+++TM/-Tmp-//ccd8ckcV.out (No such file or directory)

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

有谁知道我该怎么办才能安装它? 我安装了Postgres,似乎工作正常。

我已经尝试过easy_install和pip安装,但最终都会收到类似的消息。

2 个答案:

答案 0 :(得分:49)

似乎ARCHFLAGS确实存在问题,所以最后使用:

sudo env ARCHFLAGS =“ - arch i386 -arch x86_64”pip install psycopg2

实际上有效。

答案 1 :(得分:8)

问题在于OS X 10.6附带的Python 2.6是为三种支持的体系结构(i386,x86_64和ppc,以便与早期版本的OS X兼容)构建的,而Python的Distutils试图确保构建所有C扩展模块与Python解释器和库具有相同的arch s。但Xcode 4显然已经取消了对PPC的支持。在官方补丁可用之前,您可以:

  • 在运行pyscopg2的setup.py脚本时覆盖arch(正如Adam指出的那样,Distutils ARCHFLAGS就是这样做的方式)
  • 回到使用Xcode 3(或尝试一些不受支持的黑客在Xcode 4旁边安装Xcode 3)
  • 尝试使用不同的Python。例如,对于Python 2.7,python.org提供了i386 / x86_64 Python的安装程序here
  • 或者您可以使用第三方软件包管理器构建和安装所需的所有内容,例如MacPorts

    sudo port install py27-psycopg2 # installs Python2.7, portgresql, and pysycopg2