How to find the version of matplotlib I have?

I have Python 2.6.4 on my 64-bit Vista computer, with matplotlib
installed. How can I find what version of matplotlib it is?

Thanks,

Dick Moores

There must be a backlog of messages in the mailing list, sorry for not getting to your question sooner.

This is fairly easy, just start up python and enter the following two lines:

import matplotlib as mpl
print mpl.version

And there you go!

I hope this helps!
Ben Root

···

On Sun, Oct 24, 2010 at 7:49 PM, Richard D. Moores <rdmoores@…83…287…> wrote:

f have Python 2.6.4 on my 64-bit Vista computer, with matplotlib

installed. How can I find what version of matplotlib it is?

Thanks,

Dick Moores

Thanks to you both.

Dick Moores