From: Emmanuel <emm...@fa...> - 2007-04-08 13:38:33
|
when putting the full path of wxmsw26u_vc_enthought.dll in setup.py like this data_files = [("lib\\matplotlibdata", mpfiles), matplotlib.get_py2exe_datafiles(), # if you don't use the lib option "C:\\Python24\\Lib\\site-packages\\wx- 2.6.1.0-py2.4-win32.egg\\wx\\wxmsw26u_vc_enthought.dll", ## "wxmsw26u_vc_enthought.dll", #### ("prog\\", python4dll) ] and copying wxmsw26u_vc_enthought.dll in the same directory where setup.pyis. Running python setup.py py2exe it works "but" gives a 26Mb large dist directory with a lot of files. A good start. I'd like to know if it's possible to bundle all files in a zipped files or something similar What I obtain in dist is: [___lib [___matplolibdata [___matplotlibdata [___prog Files in lib are *.pyd,library.zip,wxmsw26u_vc_enthought.dll Files in lib\matplotib are *.afm,*.ppm,*.svg .... Files in matplotib are the same as in lib\matplotib FIles in prog are MSVCR71.dll,python24.dll,w9xpopen.exe,wx_embed.exe On 4/8/07, Emmanuel <emm...@fa...> wrote: > > Can I post also in that thread or should I open a new one? > > I'm also trying the first Werner F. Bruhin example. I saved the setup.pyand the example > in embedding_in_wx4.py then I run > > python.exe setup.py py2exe bdist > > > When looking for dll, it fails claiming: > Error: wxmsw26u_vc_enthought.dll : No such file or directory > > If I had manually the file > file:///C:/Python24/Lib/site-packages/wx-2.6.1.0-py2.4-win32.egg/wx/wxmsw26_gl_vc_enthought.dll > > in the prog directory, it works fine. > > If I add wxmsw26_gl_vc_enthought.dll to data_files it does not install in > the prog directory but in the upperlevel directory. > > How could I include it in the right place directly? > > > > On 4/5/07, Werner F. Bruhin <wer...@fr... > wrote: > > > > Hi Archana, > > > > Archana Ganesan wrote: > > > ... > > > trial.py is as follows. > > > > > > from pylab import * > > > > > > x = xrange(10) > > > plot(x) > > > savefig("trial.png") > > > > > The setup.py you are using will not work, it is meant for a matplotlib > > embedded in wx, and even for that some lines are commented out. > > > > Can you try the setup.py I sent yesterday with which I included > > simple_plot.py, which is a script using pylab as you do in your trial.py > > . > > > > Werner > > > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share > > your > > opinions on IT & business topics through brief surveys-and earn cash > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > > > _______________________________________________ > > Matplotlib-users mailing list > > Mat...@li... > > https://lists.sourceforge.net/lists/listinfo/matplotlib-users > > > > |