Instalar Poppler para Python en Mac

Necesito extraer anotaciones en pdf en Python. Todas mis búsquedas indican que necesito Poppler para hacer esto, p. correresta

Pero tengo muchos problemas para instalar Poppler. Estoy usando Python 3.4 en OS X (Yosemite). Esto es lo que he probado hasta ahora:
1. pip

pip3 install python-poppler-qt4

lo que da

ImportError: No module named 'sipdistutils'

2. Luego probé

pip3 install pypoppler

Y consiguió

NameError: name 'file' is not defined

3. Luego intenté descargar desdeaquí Mismo error que 1. Busqué sipdistutils y encontréesta lo cual pensé que podría ser. Lo copié en la carpeta y probé pip nuevamente. Esta vez tengo

File "/python-poppler-qt4-0.24.0/sipdistutils.py", line 32
raise RuntimeError, "cannot parse SIP-generated '%s'" % sbf

4. Luego intenté descargar desdeaquí y construyendo usando ./configure, que dio:

checking for PYPOPPLER... configure: error: Package requirements (                          pygtk-2.0 >= 2.10.0,
                     atk >= 1.6.0,
                     poppler-glib >= 0.12
                     ) were not met:

No package 'pygtk-2.0' found
No package 'atk' found
No package 'poppler-glib' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you 
installed software in a non-standard prefix.   

5. Macports

sudo port install py34-poppler-qt4

Error: Failed to install poppler
Please see the log file for port poppler for details:
        /opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_release_tarballs_ports_graphics_poppler/poppler/main.log

Error: no se instalaron las siguientes dependencias: poppler-qt4-mac poppler qt4-mac dbus libmng lcms py34-pyqt4 dbus-python34 dbus-glib python34 python3_select py34-sip

Siento que soy muy cercano con varios de estos enfoques, y que algo muy pequeño resolvería esto.

Respuestas a la pregunta(1)

Su respuesta a la pregunta