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?

Thanks.
Victor Lin.

-- 
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.

Reply via email to