On 18/07/2016 05:55, Devarajulu Deva wrote: > Hi good morning Steve Barnes, > > if we create onefile binary using pyInstaller, we can directly run the > binary in target machine without python installation. > Am I Correct ?, please confirm once. > <snip>
Hi Devarajulu, That is very much the idea of pyinstaller - you do indeed in one file mode end up with a single executable that can be added to another machine with no dependencies - you do have to know what your target machines operating system is or build one executable for each of them. The one caveat is that if your python program invokes any external tools then you will be dependent on them being installed and of course you also need to check to make sure you are not using platform specific items, e.g. if your code uses the Win32 library you cannot expect it to work on non-Windows platforms. -- Steve (Gadget) Barnes Any opinions in this message are my personal opinions and do not reflect those of my employer. -- 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 https://groups.google.com/group/pyinstaller. For more options, visit https://groups.google.com/d/optout.
