Is it possible to write GUI application using Python and GTK+ (GTK 3), and then to distribute that application on different OS (primarily Windows) ? Can it work on different OS.
-
ummm python code can be run an any system that has python... if you want to create a binary executable you will need to create it on the OS you are targeting or find an appropriate cross-compiler(not sure there are any... certainly none that are easy to use)Joran Beasley– Joran Beasley2015-01-09 17:52:28 +00:00Commented Jan 9, 2015 at 17:52
Add a comment
|
1 Answer
You mean to compile and distribute ? yes, you can create .exe s. If you are using Win, then you can use pyinstaller. Worked for me. But certainly, had some issues with some libraries, but newer versions may support them, evenly. If not, py2exe is one such another. Try them.
pyinstaller -- https://github.com/pyinstaller/pyinstaller py2exe -- http://www.py2exe.org/