how do I make a Tkinter project downloadable? -

Viewed 49

how do I make a Tkinter project downloadable by other computers which don't have python installed, on macOS?

py2exe works only for windows and I couldn't find a way to do it on Mac.

this question answers it for windows

1 Answers

You can use Py2App, a similar program to Py2Exe.
There are many tutorials on how to use it, so try it!

Related