Nuitka Python Compiler

4.0.8 · active · verified Sat Apr 11

Nuitka is a Python compiler that transforms Python scripts and modules into optimized C code, which is then compiled into standalone executables or extension modules. It aims to improve execution performance, offer better source code obfuscation, and simplify application distribution by bundling all dependencies. Compatible with CPython versions 2.6, 2.7, and 3.4-3.13, it supports Windows, macOS, and Linux. The current stable version is 4.0.8, with an active development cadence including frequent updates and new major releases.

Warnings

Install

Imports

Quickstart

Create a file named `hello.py` with the content above, then compile it into a standalone executable. Run the executable from the `hello.dist` directory.

print('Hello, Nuitka!')

view raw JSON →