I follow the standard installation procedure for matplotlib on Windows. I type the following commands in my terminal:
> python -m pip install -U pip setuptools
> python -m pip install matplotlib
Then I check my matplotlib version:
> python
>>> import matplotlib
>>> matplotlib.__version__
'1.5.1'
Apparently this installation procedure doesn't give me the latest matplotlib version. The latest stable release is '1.5.3'. I would expect to get at least that version.
Even better, I would like to test out the latest beta release: '2.0.0 b4'. What instructions should I type in my terminal to get that version?
Note:
I'm using the following python version:
>>> import sys
>>> sys.version
'3.5.2 |Anaconda 2.5.0 (64-bit)| (default, Jul 5 2016, 11:41:13)
[MSC v.1900 64 bit (AMD64)]'