I\'m trying to write a program that plots a graph, which made me look into Matplotlib.
I found a tutorial that started out with this little program, that worked fin
If Anaconda installed and it is already in your environment path, you can get it simply using
conda install matplotlib
in command line and then call in Python with
from pylab import *
This work for me fine as "pip install" and "easy_install" both on Win and Linux caused a lot of issues