i have an ex.py file written in python using tkinter .i want to create an executable which can run on any platform.not creating separate executable for each platform(Linux,windows,Mac).
-
2Pretty sure this is impossible.Kevin– Kevin2015-08-21 17:21:33 +00:00Commented Aug 21, 2015 at 17:21
-
2As Kevin noted this isn't possible. If this really is big concert you may want to look into Jython. Java runs everywhere (ehm, sort of).David Mašek– David Mašek2015-08-21 17:50:44 +00:00Commented Aug 21, 2015 at 17:50
Add a comment
|
1 Answer
You cannot do this. This is partly why interpreted languages like python exist: you write a platform-agnostic program that can run on any platform (in python, tcl, ruby, groovy, javascript, etc), then run it with a platform-specific runtime.
1 Comment
chandra kanth Chandra
Thanks for your comments. @david I will look into jython.