|
|
|
|
|
by quietbritishjim
1660 days ago
|
|
Also worth checking out: Nuitka [1]. It actually compiles your Python into machine code (albeit still making use of the CPython interpreter). Despite the title, pyinstaller doesn't really compile anything, it just bundles your bytecode and the interpreter into a binary. That's often useful, but it's not the same thing. You can get similar-ish results to Nuitka by combining pyinstaller with Cython but it's quite a bit of work. [1] https://nuitka.net/ |
|
The CPython runtime. The point of Nuitka is to not use the interpreter :P