I have the following Hello World code to try out TeX rendering with matplotlib on my Mac.
import matplotlib.pyplot as plt
from matplotlib import rc
rc(\'tex
In future you might want to mention that you're running the code from NetBeans. The Python path is not $PATH
, instead it's sys.path
, the path from which Python code is loaded. You need to set os.environ['PATH']
in your Python code; with TeX Live the preferred way to reference the current TeX installation is /usr/texbin
.