Tag

nuitka

1 views collected around this technical thread.

Python Programming Learning Circle
Python Programming Learning Circle
Sep 26, 2023 · Backend Development

How to Package Python Scripts into Executable Files Using Various Tools

This article explains several methods for converting Python scripts into standalone executables—including pyinstaller, cx_Freeze, py2exe, py2app, Nuitka, and a combination of Nuitka with pyinstaller—detailing their commands, platform support, advantages, and common pitfalls such as missing imports and GIL-related issues.

Executablecx_Freezenuitka
0 likes · 7 min read
How to Package Python Scripts into Executable Files Using Various Tools
Python Programming Learning Circle
Python Programming Learning Circle
Sep 6, 2023 · Backend Development

Using PyInstaller and Nuitka to Package Python Applications: Experience and Step‑by‑Step Guide

This article compares PyInstaller and Nuitka for converting Python projects into standalone executables, shares practical experiences—including size and speed differences—and provides a detailed installation and command‑line guide for Nuitka with code examples and post‑build dependency handling.

Executablenuitkapackaging
0 likes · 6 min read
Using PyInstaller and Nuitka to Package Python Applications: Experience and Step‑by‑Step Guide
Python Programming Learning Circle
Python Programming Learning Circle
Dec 8, 2021 · Backend Development

Using PyInstaller and Nuitka to Package Python Projects into Executables

This article compares PyInstaller and Nuitka for converting Python scripts into standalone Windows executables, discusses their advantages and drawbacks, provides step‑by‑step installation of Nuitka, explains key command‑line options, and demonstrates a practical example that yields a tiny, fast‑building executable versus a large, slow‑building PyInstaller output.

CLIExecutablePython
0 likes · 6 min read
Using PyInstaller and Nuitka to Package Python Projects into Executables
Python Programming Learning Circle
Python Programming Learning Circle
Mar 4, 2021 · Fundamentals

Improving Python Performance: Overview of PyPy, Pyston, Nuitka, Cython, and Numba

Although Python runs slower than C or Java, this article explains why it is slower, outlines two general approaches to speed it up, and reviews five concrete projects—PyPy, Pyston, Nuitka, Cython, and Numba—that aim to boost Python performance on various hardware.

CythonNumbaPerformance
0 likes · 7 min read
Improving Python Performance: Overview of PyPy, Pyston, Nuitka, Cython, and Numba