Software Alternatives & Reviews

nuitka VS Cython

Compare nuitka VS Cython and see what are their differences

nuitka logo nuitka

Nuitka is a Python compiler.

Cython logo Cython

Cython is a language that makes writing C extensions for the Python language as easy as Python...
  • nuitka Landing page
    Landing page //
    2021-10-04
  • Cython Landing page
    Landing page //
    2023-10-15

nuitka

Categories
  • Website Builder
  • Website Design
  • CMS
  • Programming Language
Website nuitka.net
Details $

Cython

Categories
  • Website Builder
  • Website Design
  • Programming Language
  • CMS
Website cython.org
Details $

nuitka videos

Nuitka the python compiler

More videos:

  • Review - #172: Nuitka: A full Python compiler
  • Review - Kay Hayen on Nuitka

Cython videos

Stefan Behnel - Get up to speed with Cython 3.0

More videos:

  • Review - Cython: A First Look
  • Review - Simmi Mourya - Scientific computing using Cython: Best of both Worlds!

Category Popularity

0-100% (relative to nuitka and Cython)
Website Builder
46 46%
54% 54
Website Design
44 44%
56% 56
CMS
42 42%
58% 58
Programming Language
34 34%
66% 66

User comments

Share your experience with using nuitka and Cython. For example, how are they different and which one is better?
Log in or Post with

Social recommendations and mentions

Cython might be a bit more popular than nuitka. We know about 47 links to it since March 2021 and only 36 links to nuitka. We are tracking product recommendations and mentions on various public social media platforms and blogs. They can help you identify which product is more popular and what people think of it.

nuitka mentions (36)

  • Python Is Portable
    This is a good place to mention https://nuitka.net/ which aims to compile python programs into standalone binaries. - Source: Hacker News / 5 days ago
  • We are under DDoS attack and we do nothing
    For Python, you could make a proper deployment binary using Nuitka (in standalone mode – avoid onefile mode for this). I'm not pretending it's as easy as building a Go executable: you may have to do some manual hacking for more unusual unusual packages, and I don't think you can cross compile. I think a key element you're getting at is that Go executables have very few dependencies on OS packages, but with Python... - Source: Hacker News / 21 days ago
  • Python 3.13 Gets a JIT
    There is already an AOT compiler for Python: Nuitka[0]. But I don't think it's much faster. And then there is mypyc[1] which uses mypy's static type annotations but is only slightly faster. And various other compilers like Numba and Cython that work with specialized dialects of Python to achieve better results, but then it's not quite Python anymore. [0] https://nuitka.net/ [1] - Source: Hacker News / 3 months ago
  • Briefcase: Convert a Python project into a standalone native application
    Nuitka deals pretty well with those in general: https://nuitka.net/. - Source: Hacker News / 9 months ago
  • How to speedup python(mainly import time)
    Have a look at Nuitka, which is a "real" Python compiler into C. It uses CPython in its backend and should be completely compatible to "regular" Python. The compiled code can, but does not have to improve performance. It's probably worth looking into. Source: about 1 year ago
View more

Cython mentions (47)

  • Ask HN: C/C++ developer wanting to learn efficient Python
    Https://cython.org can help with that. - Source: Hacker News / 11 days ago
  • How to make a c++ python extension?
    The approach that I favour is to use Cython. The nice thing with this approach is that your code is still written as (almost) Python, but so long as you define all required types correctly it will automatically create the C extension for you. Early versions of Cython required using Cython specific typing (Python didn't have type hints when Cython was created), but it can now use Python's type hints. Source: 10 months ago
  • Codon: Python Compiler
    Just for reference, * Nuitka[0] "is a Python compiler written in Python. It's fully compatible with Python 2.6, 2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, and 3.11." * Pypy[1] "is a replacement for CPython" with builtin optimizations such as on the fly JIT compiles. * Cython[2] "is an optimising static compiler for both the Python programming language and the extended Cython programming language... Makes writing C... - Source: Hacker News / 12 months ago
  • Any faster Python alternatives?
    Profile and optimize the hotspots with cython (or whatever the cool kids are using these days... It's been a while.). Source: about 1 year ago
  • What exactly is 'JIT'?
    JIT essentially means generating machine code for the language on the fly, either during loading of the interpreter (method JIT), or by profiling and optimizing hotspots (tracing JIT). The language itself can be statically or dynamically typed. You could also compile a dynamic language ahead of time, for example, cython. Source: about 1 year ago
View more

What are some alternatives?

When comparing nuitka and Cython, you can also consider the following products

PyInstaller - PyInstaller is a program that freezes (packages) Python programs into stand-alone executables...

Numba - Numba gives you the power to speed up your applications with high performance functions written...

cx_Freeze - cx_Freeze is a set of scripts and modules for freezing Python scripts into executables in much the...

py2exe - A distutils extension to create standalone Windows programs from Python scripts.

PyPy - PyPy is a fast, compliant alternative implementation of the Python language (2.7.1).

Inno Setup - Inno Setup is a free installer for Windows programs.