From: John H. <jdh...@ac...> - 2006-03-08 20:45:06
|
>>>>> "Mitchell," == Mitchell, Gary (Gary) <gm...@ag...> writes: Gary> John, I tried using TkAgg as the backend and it raised Gary> a value error Unrecognized backend error. The Perhaps you entered it in wrong -- it should be "TkAgg" as you typed above but if you got this error I'm guessing you made a typo in your rc file. Create a simple script from pylab import subplot, show ax = subplot(111) ax.plot([1,2,3]) show() and run it from the command line with > python myscript.py --verbose-helpful This will report information about which backend you've selected etc... It will also tell you which rc file is loaded. If you encounter further errors please post this output along with your explanation. Sorry for the troubles -- you're almost there! JDH |