Installing matplotlib The tool took me half a day to install successfully (is in WINDOW7 64-bit Python 2.7.10 (default, May, 09:40:32) [MSC v.1500 (Intel) ] on WI
N32). Now the installation process of the various problems encountered in the record, I hope to help meet the same problems with my friends.
Directly with pip install matplotlib command installation, found error: not installed C + +, FreeType, numpy-1.11.2, etc., installed once, found what is missing what plug-ins, finally installed successfully
The tools you need to install are:
:
First install Vcforpython27.mis
Second installation NumPy
Third installation FreeType
IV Mounting SCIPY
V Installation matplotlib
Verify:
>>> from matplotlib import Pyplot
>>> Pyplot.plot ([1,2,3,4],[1,4,9,16])
[<matplotlib.lines.line2d object at 0x0434ae10>]
>>> Pyplot.show ()
The graphics for the popup window are:
Python Installation Drawing Tool matplotlib