From: <oli...@ma...> - 2005-04-12 12:28:28
|
John and Philippe, thank you for your help. I have followed John's updated examples and now I get an exe-file of my application. However, now I run into the same timezone/UTC key error problems that was discussed the last few days on this list. As I understand the problem is not completely resolved yet, so I'll jsut wait and see ... ;-). I would like to help, but this is way above my head. Sorry! Oliver John Hunter <jdh...@ac...d .uchicago.edu> To Sent by: oli...@ma... matplotlib-users- cc ad...@li...urc mat...@li...urceforge. eforge.net net Subject Re: [Matplotlib-users] problems 11.04.2005 19:05 with py2exe >>>>> "oliver" == oliver tomic <oli...@ma...> writes: oliver> data = glob.glob(r'C:\Python24\Lib\site-packages\matplotlib\*') The python modules should not be included in the "data" listing. Eg, you write data = glob.glob(r'C:\Python24\Lib\site-packages\matplotlib\*') but this is wrong because the files in that directory are python modules. The data are the fonts, icons, etc, found in data = glob.glob(r'C:\Python24\share\matplotlib\*') See the examples simple_plot_wxagg which I just updated at http://matplotlib.sourceforge.net/py2exe_examples.zip Hope this helps, JDH ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Matplotlib-users mailing list Mat...@li... https://lists.sourceforge.net/lists/listinfo/matplotlib-users |