Nuitka 0.6.3 Ubuntu 18.04 on my machine Docker version 18.09.7 I have gone towards using .so files and not an executable because we have an external Django API that needs to import files from the other application. Is compiling the whole API into an executable a solution? We are more int...
The goal with Nuitka is however, to not have to write code for these things. PyInstaller hooks are not working with Nuitka. At this time, these Yaml files of Nuitka are not well documented, I have to admit, this may change with volunteers. The other approach is to report what happens w...
Using Nuitka <the_right_python> -m nuitka [options] <file_to_compile> Disclaimer: Nuitka creates standalone executables that run on any machine with the same operating system (e.g., Windows to Windows). However, executables compiled on one OS (e.g., Windows) will not run on another O...
Python's reference implementation is CPython. It's specified in C, matching the C89 standard with many select features of C99. CPython contains its C extensions, although third-party extensions aren't restricted to previous C versions; for example, they can be run with C++ or C11. It com...
I'm trying to use nuitka to package our software built with Django and Pipenv. I'm struggling to make it work. Here are the steps I followed to create the project and compile the app: pipenv --python 3.6 pipenv shell pipenv install django # Installed django 3.1.7 pipenv install nuitka ...
Question - How to use Pydantic & Cython? What is the proper way to Cythonize a project using Pydantic? I've tried a simple snippet (see below), it compiles but throws an ConfigError on import: from pydantic import BaseModel, Field, valid...