3

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).

2
  • 2
    Pretty sure this is impossible. Commented Aug 21, 2015 at 17:21
  • 2
    As 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). Commented Aug 21, 2015 at 17:50

1 Answer 1

2

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.

Sign up to request clarification or add additional context in comments.

1 Comment

Thanks for your comments. @david I will look into jython.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.