I need to use the Tkagg backent to use matplotlib in a Tkinter program, and I received the \"ImportError: No module named backend_tkagg\" error message.
Looking arou
I solved it by compiling matplotlib
from source. It has Tkagg active by default.
Only problem was it didn't compile Tkagg since I didn't have tk-devel installed... after installing it everything went ok.
So I still don't know if easy_install matplotlib
doesn't use TkAgg by design, or if it too checked and noticed that I didn't have Tk.h
installed, but anyway this is the way to go.