I want to install matplotlib on windows. To do this I tried those lines,
git clone https://github.com/matplotlib/matplotlib
cd matplotlib
py setup.py build
py setup.py install
which I found at this link
But I think the installation does not succesfully occured. This is result of py setup.py install
:
So still following imports does not work;
import matplotlib.pyplot as plt
import matplotlib.animation as animation
An error says Unresolved import. So I am supposing this is because freetype and png did not installed.
Now I found freetype.dll and installed it but where should I put that file?
Any idea about this problem.