Skip to content
Jakukyo Friel edited this page Dec 13, 2014 · 4 revisions

Nuitka compiles python scripts into an exectuable binary:

  1. Users don't need to have python installed, just download and run a single binary.
  2. Compiled C++ exectuable runs faster (up to 2.8x) than Python.

The following command build a standalone exectuable via clang:

nuitka --standalone --improved --clang /path/to/your.py

You can find the exectuable your.exe under your.dist in the current directory.

It supports Python 2.6, 2.7, 3.2, 3.3, 3.4.

Clone this wiki locally