I have a problem when trying to make an executable with a Python application.
For doing this, I\'m using Py2exe with the 2.7 version of Python.
My applicatio
You will need to copy the mpl-data folder too. Check this official wiki site http://www.py2exe.org/index.cgi/MatPlotLib
import matplotlib ... setup( ... data_files=matplotlib.get_py2exe_datafiles(), )
You will need something like this in your setup.py for py2exe. hope it helps.