Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot install psycopg2 on OSX 10.6.7 with XCode4

Trying to install psycopg2 on OSX results in the following:

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

Does anyone have any idea what can I do to get it installed? I have Postgres installed and it seems to work fine.

I’ve tried both easy_install and pip install, but both end up with a similar message.

like image 239
margusholland Avatar asked Mar 25 '11 00:03

margusholland


People also ask

How do you fix ModuleNotFoundError No module named psycopg2?

The Python "ModuleNotFoundError: No module named 'psycopg2'" occurs when we forget to install the psycopg2-binary module before importing it or install it in an incorrect environment. To solve the error, install the module by running the pip install psycopg2-binary command.

Can install psycopg2 Windows?

Install the psycopg2 module in Windows 10 Now that we have our virtual environment setup and ready, install the psycopg2 module to create a simple connection in the PostgreSQL database cluster. Make sure to upgrade the pip command to avoid error when installing a package module from python in a virtual environment.


2 Answers

It seems that there was something wrong with the ARCHFLAGS actually sticking, so finally using:

sudo env ARCHFLAGS="-arch i386 -arch x86_64" pip install psycopg2

actually worked.

like image 168
margusholland Avatar answered Nov 15 '22 17:11

margusholland


The problem is that the Python 2.6 included with OS X 10.6 was built for three supported architectures (i386, x86_64, and ppc for compatibility with earlier releases of OS X) and Python's Distutils tries to ensure that all C extension modules are built with the same archs as the Python interpreter and library. But Xcode 4 has apparently removed support for PPC. Until an official patch is available, you can either:

  • override the archs when running the setup.py script for pyscopg2 (as Adam points out, the Distutils ARCHFLAGS is the way to do that)
  • go back to using Xcode 3 (or try some unsupported hacks for installing Xcode 3 along side of Xcode 4)
  • try using a different Python. For instance, for Python 2.7, python.org provides an installer for an i386/x86_64 Python here
  • or you could build and install everything you need using a third-party package manager, like MacPorts.

    sudo port install py27-psycopg2 # installs Python2.7, portgresql, and pysycopg2
    
like image 23
Ned Deily Avatar answered Nov 15 '22 18:11

Ned Deily