Redpill me on Nuitka.
>>107808487It sucks.It takes forever to compile anything, the binaries aren't much faster than just running the thing in python, and overall your time would be better spent writing C++ instead of python transliterated to C++ and then compiled.If you use ANY libraries it's unclear where your binary ends and the python libraries begin. Unless you ask nuitka to compile everything in the dependency tree, in which case it takes UNFATHOMABLY LONG to compile.
>>107808587You only need to do the final compilation on export, not when developing.I only care if I can export a small 5-10 MB binary without python huge bloat.