nuitka

No Clang component for MSVC found

No Clang component for MSVC found Question: I’m using anaconda Nuitka packages to obfuscate my python script PASS.py I’ve done below steps: installed Microsoft visual studio community edition 2022 with python development and Desktop development with C++ installed individual components: I have also installed microsoft_build_tools_2015_update_3_x86_x64 and visual_2015_redistributable_update_3_x86 added to path system variable: clang.exe, clang++.exe and …

Total answers: 1

FATAL: Error, Visual Studio required for using ClangCL on Windows

FATAL: Error, Visual Studio required for using ClangCL on Windows Question: while trying to use Nuitka on anaconda prompt to obfuscate python script pass.py (would like to use clang compiler not gcc) after typing below cmd: python -m nuitka –clang –follow-imports pass.py it shows this error message: FATAL: Error, Visual Studio required for using ClangCL …

Total answers: 1

Is there abstract syntax tree (AST) in python extension module (files with suffix .so)?

Is there abstract syntax tree (AST) in python extension module (files with suffix .so)? Question: I can check AST in python file: python3 -m ast some_file.py But, when I compile it with nuitka: nuitka3 –module some_file.py I get some_file.so extension module and when I run python3 -m ast some_file.so I get error. So, question my …

Total answers: 1

Nuitka doesn't get along with PySimpleGUI: `CALL_FUNCTION_WITH_ARGS14' error

Nuitka doesn't get along with PySimpleGUI: `CALL_FUNCTION_WITH_ARGS14' error Question: I try to make an EXE on windows with Nuitka but always get error like this: CALL_FUNCTION_WITH_ARGS14 I googled ‘CALL_FUNCTION_WITH_ARGS14’ but nothing shows up. Does anyone have similar issue? I am using Python 3.9 and 3.10 and this is my command nuitka –standalone –onefile –mingw64 –show-memory …

Total answers: 2

Where does a file gets stored that came with a .exe file on Windows 10/11?

Where does a file gets stored that came with a .exe file on Windows 10/11? Question: So I have made this python file which I want to compile (it’s called ElPatron) to a .exe file with Nuitka. I did it correctly and this is the dist folder that came with that (using the –standalone argument …

Total answers: 2