Answer the question
In order to leave comments, you need to log in
How can I compile Cython (C) code so that it doesn't open a console when I run it?
I have a program in Cython (.pyx):
import tkinter
cdef public void Function():
root = tkinter.Tk()
root.mainloop()
if __name__=='__main__':
Function()
Answer the question
In order to leave comments, you need to log in
They themselves asked to create a console (-mconsole), try -mwin32 -mwindows
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question