Re: [Matplotlib-users] py2exe problems for a tkinter/matpotlib project - works for me, but not for others

2010-12-31 Thread ghost82
Browsing the web I think I find the solution :) Hope this helps other users: The only thing I did is to delete the file: D:\Documents and Settings\Daniele\.matplotlib\fontList.cache NB: My windows user is Daniele Then start the exe and all is plotted correctly! NB2: everytime I change the name

Re: [Matplotlib-users] py2exe problems for a tkinter/matpotlib project - works for me, but not for others

2010-12-31 Thread ghost82
Werner F. Bruhin wrote: It should be there, i.e. mpl-data in the lib/site-packages/matplotlib folder has the same number of files and folders as the one created by setup.py in dist. But it obviously doesn't find it or some other setting to handle the LaTex stuff is not there. Put

[Matplotlib-users] py2exe problems for a tkinter/matpotlib project - works for me, but not for others

2010-03-15 Thread Kim Hansen
Hi group, I have previously had success with py2exe and matplotlib, using a specialized setup.py like the attached one (which is adapted from http://www.py2exe.org/index.cgi/MatPlotLib). However, now I have tried to go a step further and integrate some Tkinter controls in the GUI for a

Re: [Matplotlib-users] py2exe problems for a tkinter/matpotlib project - works for me, but not for others

2010-03-15 Thread Werner F. Bruhin
Hi Kim, On 15/03/2010 10:57, Kim Hansen wrote: Hi group, I have previously had success with py2exe and matplotlib, using a specialized setup.py like the attached one (which is adapted from http://www.py2exe.org/index.cgi/MatPlotLib). However, now I have tried to go a step further and integrate

Re: [Matplotlib-users] py2exe problems for a tkinter/matpotlib project - works for me, but not for others

2010-03-15 Thread Werner F. Bruhin
On 15/03/2010 14:37, Kim Hansen wrote: Hi Werner 2010/3/15 Werner F. Bruhin werner.bru...@free.fr mailto:werner.bru...@free.fr Hi Kim, Changing the line 560 in mathtext.py from: font = FT2Font(basename) to: font = FT2Font(str(basename)) Fixed