Instalando psycopg2 en virtualenv cuando PostgreSQL no está instalado en el sistema de desarrollo

¿Es posible instalarpsycopg2 en unavirtualenv cuando PostgreSQL no está instalado en mi sistema de desarrollo: ¿MacBook Pro con OS X 10.6?

Cuando corropip install psycopg2 desde mivirtualenv, Recibí el error que se muestra a continuación.

Estoy tratando de conectarme a una base de datos heredada en un servidor usando Django, y preferiría no instalar PostgreSQL en mi sistema de desarrollo si es posible.

¿Por qué no instalar PostgreSQL?

Recibí un error al instalar PostgreSQL usando homebrew. Tengo Xcode4, y solo Xcode4, instalado en mi MacBook Pro y creo que está relacionado con la falta de gcc 4.0. Sin embargo, este es un problema para otra pregunta de StackOverflow.

Update 8:37 AM el 12 de abril de 2011: Todavía me gustaría saber si esto es posible sin instalar PostgreSQL en mi MacBook Pro. Sin embargo, corríbrew update y forzó una reinstalación de ossp-uuid conbrew install --force ossp-uuid y ahorabrew install postgresql trabajos. Con PostgreSQL instalado correctamente, pudepip install psycopg2 desde dentro de mi virtualenv.

Error depip install psycopg2
$ pip install psycopg2
Downloading/unpacking psycopg2
  Running setup.py egg_info for package psycopg2

    Error: pg_config executable not found.

    Please add the directory containing pg_config to the PATH
    or specify the full executable path with the option:

        python setup.py build_ext --pg-config /path/to/pg_config build ...

    or with the pg_config option in 'setup.cfg'.
    Complete output from command python setup.py egg_info:
    running egg_info

writing pip-egg-info/psycopg2.egg-info/PKG-INFO
writing top-level names to pip-egg-info/psycopg2.egg-info/top_level.txt
writing dependency_links to pip-egg-info/psycopg2.egg-info/dependency_links.txt
warning: manifest_maker: standard file '-c' not found

Error: pg_config executable not found.

Please add the directory containing pg_config to the PATH
or specify the full executable path with the option:

    python setup.py build_ext --pg-config /path/to/pg_config build ...

or with the pg_config option in 'setup.cfg'.

----------------------------------------
Command python setup.py egg_info failed with error code 1
Storing complete log in /Users/matthew/.pip/pip.log
Investigación prelimina

continuación están los artículos que leí como investigación preliminar:

Instalando psycopg2 para usar Django con PostgreSQL en OS XInstalar psycopg2 en OS XUtilizando psycopg2 con virtualenv en Ubuntu JauntyLucidPostgres, psycopg2, virtualenv instala sugerencias

Respuestas a la pregunta(8)

Su respuesta a la pregunta