0

One of the graph generation files of Python is Matplotlib("http://matplotlib.org/"). I am using Python3.2.1 on Windows7(64bit) O/S. I am trying to download the same to run matplotlib.animation.

If any one of the esteemed members of the group may kindly suggest me how to download the same.

Thanks in Advance, Regards, Subhabrata Banerjee.

I can not import matplotlib.pyplot/matplotlib.pylab and if I have to download where from I may download? I am using Python3.2.1 on Windows7(64 bit). But without a separate download how come matplotlib.animation is fine? Regards, Subhabrata.

SUBHABRATA
  • 123
  • 7

2 Answers2

2

I dont believe full support of python 3 has been added to matplotlib. Here is the status page.

It will support it on the next release.

If you want to use matplotlib with python. I believe you should use python 2.7 because Python 3 has massive changes that broke backward compatibility.

tshepang
  • 10,772
  • 21
  • 84
  • 127
user1462442
  • 4,981
  • 1
  • 20
  • 24
1

You can use pip to install the matplotlib by following command: pip install matplotlib

It will automatically handle download and dependency task for you.

For how to install pip under Windows, refer here: How do I install pip on Windows?

Community
  • 1
  • 1
clwen
  • 16,956
  • 27
  • 70
  • 91