From: Emmanuel <emm...@fa...> - 2007-04-08 11:17:45
|
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.py and 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<file:///C:/Python24/Lib/site-packages/wx-2.6.1.0-py2.4-win32.egg/wx/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 > |