python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
conda doesn't see the nuitka package
When trying to compile a file, using the command conda -m nuitka -onefilestrict test.py
I get an error CommandNotFoundError: No command 'conda nuitka'.
Used conda config --add channels conda-forgeand ...
SmaileR
Votes: 0
Answers: 1
How to add Copyright to Nuitka generated Exe
To add copyright to nuitka generated exe
Script-
python -m nuitka -standalone --windows-company-name=MYcompany --windows-file-version=1.1.0 --windows-product-name=app --enable-plugin=tk-inter main.py
...
Ajay Kumar Arikeri
Votes: 0
Answers: 2
How do I generate the so library from Python code and call it in C?
My goal is to generate the so library from Python code and then call it in C. Here's how I did it
add.py
def add(x, y):
return x+y
using command:
python -m nuitka --module add.py and get add.so
...
tfxidian
Votes: 0
Answers: 1
how to convert waf build system to exe?
i use waf(https://waf.io/) as my build system ,
as not ervey my client want install the python , so I want try to convert it (python+waf+wscript) to exe file ,
first I try the pyinstaller ,
pyinstalle...
chenx319
Votes: 0
Answers: 1