chandra kanth Chandra
chandra kanth Chandra

Reputation: 149

creating a platform independent GUI executable in python

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

Upvotes: 3

Views: 904

Answers (1)

Bryan Oakley
Bryan Oakley

Reputation: 385890

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.

Upvotes: 2

Related Questions