On Thu, 2 Sep 2010 19:03:02 -0700 (PDT), Si <[email protected]> wrote:
> we have a python app that we'd like to compile with pyinstaller. we're
> interfacing with svn and need the pysvn library. i don't want one
> static binary, whats the best way to use pyinstaller to give my
> compiled app access to pysvn?

I am not sure I understand. Do you want to package an application that
depends on an external pysvn installation without bundling it? Then it is
sufficient to add pysvn to the excludes list in the spec file. This way,
PyInstaller will not bundle pysvn and will depend on it being available at
runtime. PyInstaller executables by default always look OUTSIDE the package
if they can't find a library INSIDE.
-- 
Giovanni Bajo   ::  [email protected]
Develer S.r.l.  ::  http://www.develer.com

My Blog: http://giovanni.bajo.it

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