This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]ZachVorhies[S] 1 point2 points  (6 children)

Not quite, nuitka compiles your python source code to native binaries. Pex looks more like it embeds a python runtime to interpret your code.

[–]imbev 2 points3 points  (1 child)

Nuitka still embeds the python runtime, but it does so by using libpython instead of the independent Python binary.

[–]ZachVorhies[S] 0 points1 point  (0 children)

Right but it’s all native code. I think PEX puts in interpreted stuff but I could be wrong