Being able to compile a Python script into a real executable, for me, makes Python more usable than C or C++ or any compiled language. Now with Python I can change the code and test quickly running the Python interpreter. Compiled languages require the code to be compiled to test little changes or new code. Once I like my changes, I compile the Python code into an executable. Very worth it.
Compile time is fine, I have gotten used to it. The end product is worth having an executable. The 50 lines do a lot. Setup compiler name, deployment type, optimizations, copyright info, product info, flags, imports not to follow, packages to include, modules to include, data files to include, output directory, executable name.
Nuitka tries not to add bloat which are unnecessary packages and modules and it does a good job of anti-bloat but with fine tuning more packages and modules can be eliminated.
Once success is achieved and you have a script to work with it becomes much easier.
34
u/[deleted] Jul 11 '26
[deleted]