(Feb-27-2019, 03:44 PM)gahhon Wrote: But if convert to .exe by using pyinstaller, the client computers are not able to execute the .exe files due to their computers have no Python installed.Then you doing something wrong,like not aware that stuff can be outside(Python) link to OS that's need to be included.
That's why I am consider to using the py2exe.
Follow all in this post.
So if move
power.exe
to Pc without Python then it will work.power.py
is simple file with no external dependencies.Look at Sound-player standalone,
see that i take step to include external OS dependencies
AVbin avbin.dll(windows) and libavbin.so.10(Linux)
.If i do not do this,it's not a standalone solution.
See also that i start with virtual environment,to have isolation from OS in first place before start troubleshoot.
Have to understand that there never will be one easy solution for doing building stuff like this.
py2exe had of course the same problem,if there where external dependencies.