Python: no se puede representar Tex en Matplotlib

Recientemente actualicé mi laptop a Snow Leopard, actualicé TeX a la versión 3.1415926 (TeX Live 2011 / MacPorts 2011_5) e instalé Python 2.7.3. Después de todas estas instalaciones, ejecuté macport selfupdate y macport upgrade outdated. Sin embargo, ahora cuando intento usar TeX en matplotlib, recibo lo siguiente:

LaTeX was not able to process the following string:'lp'
Here is the full report generated by LaTeX: 

This is pdfTeX, Version 3.1415926-2.3-1.40.12 (TeX Live 2011/MacPorts 2011_5)
 restricted \write18 enabled.  
entering extended mode (./64a53cc27244d5ee10969789771e33fa.tex
LaTeX2e <2009/09/24>
Babel <v3.8l> and hyphenation patterns for english, dumylang, nohyphenation, cz
ech, slovak, dutch, ukenglish, usenglishmax, basque, french, german-x-2009-06-1
9, ngerman-x-2009-06-19, german, ngerman, swissgerman, italian, polish, portugu
ese, spanish, catalan, galician, ukenglish, loaded.
(/opt/local/share/texmf-texlive-dist/tex/latex/base/article.cls
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
(/opt/local/share/texmf-texlive-dist/tex/latex/base/size10.clo))

! LaTeX Error: File `type1cm.sty' not found.

Type X to quit or <RETURN> to proceed, or enter new name. (Default extension: sty)


l.3 \renewcommand
             {\rmdefault}{pnc}^^M
No pages of output.

Similar aesta pregunta anterior, Intenté establecer la ruta en mi código python a través de:

os.environ['PATH'] = os.environ['PATH'] + ':/opt/local/bin/latex'

ya quewhich latex cedió/opt/local/bin/latex. Sin embargo, eso no funcionó, con el mismo mensaje de error. También probé el camino a tex, así como el ejemplo de la pregunta anterior. Ningún cambio.

Luego traté de forzar paquetes posiblemente perdidos a través de:

matplotlib.rcParams['text.latex.preamble']=[r"\usepackage{amsmath}"]

Sin embargo, eso tampoco funcionó.

La única manera de hacer que mis parcelas funcionen es decirrc('text', usetex=False), que no es lo ideal. Cualquier ayuda sería muy apreciada.

Respuestas a la pregunta(2)

Su respuesta a la pregunta