Reputation: 318
I understand that Matplotlib has been ported to Python 3 (matplotlib-python-3-thanks-cape-town-group).
However, it seems that I can only find Windows executables.
The matplotlib-py3 page claims that it was merged into Matplotlib.
Does anybody knows where I can find Matplotlib 1.2 development branch most likely to work on Linux. Does anybody successfully use it with Python 3?
Upvotes: 9
Views: 9121
Reputation: 12273
I know this is a pretty old question, but I'm currently able to use matplotlib (1.2) with python3 using pip:
pip-python3 install matplotlib
worked for me, using python 3.3.
Upvotes: 3
Reputation: 2024
As @ThomasK mentioned, the git master branch is the place to get the current Python3 compatible version of matplotlib, and it will be where v1.2 is cut from. If there are any problems that come up, please file them as bugs.
Just a heads up that there will soon be a bug-fix only v1.1.1 release, which will still not be Py3k compatible, so when you hear about it, please ignore it as far as Python3 is concerned.
Upvotes: 5