On Sun, 2010-05-09 at 00:46 -0700, Victor Lin wrote: > Hi, > > I build my python program into a directory of executable with > PyInstaller. The structure of the directory looks like this: > > /dist > myprog.exe > dep1.pyd > dep2.pyd > ... > /eggs > /Microsoft.VC90.CRT > /datas > /plugins > > Is it possible to build it like this: > > /dist > myprog.exe > /datas > /plugins > /dependencies > dep1.pyd > dep2.pyd > ... > /eggs > /Microsoft.VC90.CRT > > I don't want everything goes into same directory, I want those > dependencies go into another specific directory. How can I do that > with PyInstaller?
It's not currently supported. You can subscribe to ticket #143, which reminds us of this issue: http://www.pyinstaller.org/ticket/143 -- Giovanni Bajo :: [email protected] Develer S.r.l. :: http://www.develer.com My Blog: http://giovanni.bajo.it Last post: Grey on black: combining greylisting with blacklists -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
