For moderators: this question didn't help me, so please dont mark this as a duplicate, thanks :)
I have finally compiled the cython c code into an executable withnout any errors, but i can't run it on any machine withnout python installed.
To generate and compile the code, i used cython and the gcc compiler.
and my OS is windows 10
Also, i need to make a portable exe, not an installer, or a self extracting archive.
i am not sure if i provided enough infomation, if you need to konw anything just ask me in the comments :P
I can't find anything that would solve this issue, so i would really appreciate any help :)
To create the Cython C code, i used this command:
cython -3 --embed main.py
To compile the generated code, i used this command:
gcc main.c --static -I "C:\Program Files\Python39\include" -L "C:\Program Files\Python39\libs" -lpython39 -municode -o main.exe
This is the error message i am getting (on the machine withnout python):
Thanks :)