|
|
|
|
|
by Loic
3794 days ago
|
|
PyInstaller[0] is working really well. I am using it to deliver Python application in big companies setup as a single ".exe" without the need to install anything on the target machine. The only drawback is that you have the decompression time when starting the software, but in my case, the customers have not noticed it yet. Edit: The advantages of Nuitka are that as you compile your code to C++, you make it faster and also protect it against easy reverse engineering. This could be interesting to compile the critical parts of your application with Nuitka and pack the rest with PyInstaller. [0]: http://www.pyinstaller.org/ |
|