From: John H. <jdh...@ac...> - 2005-04-11 17:05:10
|
>>>>> "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 |