On Mon, Jun 3, 2013 at 3:38 PM, Matthias Rosch <[email protected] > wrote:
> Hi, > > pyinstaller works fine for me, many thanks. > for some special thinks like debugging, addon-tests i want an interface in > the binary package where i can import my module "debugger.py" at runtime. > Of course the interface ( class names, function names ) are static, but i > want to change the content of this functions and use it directly with the > binary package. > This should be no problem; just use __import__ as usual. > I know that i need a python environment on that platform. > You confused me a little there. You already have a python environment baked into your binary distribution, so you don't need a python environment on the target platform. > Is this possible with pyinstaller? Is this possible with any other packing > tools? > Yes, and as far as other tools, probably so. > > -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
