Python: Impossível Renderizar Tex no Matplotlib

Recentemente, atualizei meu laptop para o Snow Leopard, atualizei o TeX para a versão 3.1415926 (TeX Live 2011 / MacPorts 2011_5) e instalei o Python 2.7.3. Depois de todas essas instalações, eu corri o macport selfupdate e o upgrade do macport desatualizado. No entanto, agora, quando tento usar o TeX no matplotlib, recebo o seguinte:

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.

Igual aesta pergunta anterior, Eu tentei definir o caminho no meu código python via:

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

Desde awhich latex rendeu/opt/local/bin/latex. No entanto, isso não funcionou, com a mesma mensagem de erro. Eu também tentei o caminho para tex, bem como o exemplo da pergunta anterior. Nenhuma mudança

Então eu tentei forçar a possibilidade de perder pacotes via:

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

no entanto, isso também não funcionou.

A única maneira de fazer meus enredos funcionarem é dizerrc('text', usetex=False), o que não é ideal. Qualquer ajuda seria muito apreciada.

questionAnswers(2)

yourAnswerToTheQuestion