I have compiled my program, he works. But i use tkinter and i want compile this program.
My commands :
cython.exe --embed file.py -o file.c
gcc.exe file.c -o file -I C:/Python27/include -L C:/Python/libs -lpython27
I use cygwin and mingw32, and i am on windows.
My program works but i have windows console with, and i don't want that console.
My research find that pythonw.exe don't launch console, and i think py2exe use that, but i want one file, i use cython for that.
Can i launch pythonw.exe with cython and not python.exe ? Or better, can i disable console ? How ?
Thanks in advance.