Skip to main content
1 vote
1 answer
85 views

I'm working on a project to develop a simple app, based on a Python script for data analysis, using PyQt6 to format the app, and using Nuitka to create an exe. (Yes, I've tried using PyInstaller. My ...
Andrew B's user avatar
0 votes
1 answer
134 views

I was trying to compile my python program to the smallest executable and I was pleased with this nuitka --python-flag=-OO --onefile updater.py As it produced this on my machine -rwxrwxrwx 1 filip ...
Filip's user avatar
  • 182
1 vote
0 answers
52 views

I use Python 3.10 and OpenCV, building from sources with CUDA enabled and it worked. Then I try to build the .exe using Pyinstaller this also worked. Problem: When I try to run the EXE file, the ...
Teman A's user avatar
  • 11
0 votes
0 answers
157 views

could anybody please help me with this. (Windows 10 environment) I am trying to compile a python program (hello.py) with the --onefile option. python -m nuitka --onefile hello.py This works very ...
GeorgeDoubleU's user avatar
0 votes
0 answers
94 views

When i compile my code using Nuika using this command: nuitka --onefile --enable-plugin=tk-inter --windows-console-mode=disable ^ --include-data-files=bg.jpg=bg.jpg ^ --include-data-files=credentials....
skorpi12's user avatar
0 votes
0 answers
98 views

I'm working on a Pycord bot project, and I'm using Nuitka to compile it. My goal is to compile the main script as a single file (--onefile) for distribution, but still be able to dynamically load ...
Kh4lid MD's user avatar
  • 135
1 vote
1 answer
395 views

I try to turn a .py file into a .bin file with Nuitka. Since it have to work on machine without python installed, I use the --standalone option that comes with --follow-imports and --python-flag=...
user27749118's user avatar
0 votes
0 answers
527 views

As is known to all, Nuitka and Cython compiles Python bytecodes to C/C++. Technically, can Python applications nuitka/cython programs be reversed?
qfcy's user avatar
  • 43
1 vote
1 answer
68 views

I'm distributing a Python library compiled with Nuitka and generating .pyi stub files using: stubgen --parse-only --include-docstrings <my_project> -o . After compiling the project with Nuitka ...
Rorschy's user avatar
  • 27
1 vote
0 answers
161 views

I'm building a .whl package for a Python library using Nuitka. To generate the wheel, I use the following command: python setup.py bdist_nuitka The wheel is created successfully, and after installing ...
Rorschy's user avatar
  • 27
2 votes
1 answer
194 views

Can I customize the compile options for GCC in Nuitka (e.g. -O2, -static)? Update: I read the user manual but found nothing. I also checked the command line options of nuitka and found --generate-c-...
Zxd2025's user avatar
  • 181
1 vote
2 answers
384 views

Here is an example code: while True: # here is a comment pass Here is my Python and Nuitka version: D:\test>py -m nuitka --version 2.6.8 Commercial: None Python: 3.8.2 (tags/v3.8.2:7b3ab59, ...
Zxd2025's user avatar
  • 181
0 votes
1 answer
118 views

I have a project written in Python and consisting of several files. I need to compile all the files into a single .pyd file. I used Cython, but it compiled each .py file into a separate .pyd file. Is ...
HEOPS's user avatar
  • 1
0 votes
0 answers
22 views

Running W10 pro X64, python 3.12.3, nuitka 2.6.7 Recently in a hurry I tried many things to build a WIN32 exe using nuitka, never successful, even though I was previously building x64 exe's without ...
Tucan's user avatar
  • 1
0 votes
1 answer
44 views

I wrote a python project that automates tasks and makes use of the smartsheet api but when I package this project into an executable with nuitka I get the error: ImportError! Could not load api or ...
Mariano Gongora's user avatar

15 30 50 per page
1
2 3 4 5
14