user422100
user422100

Reputation: 2179

executing programs without python installed

its possible to execute a python program on system where python is not installed? I want to execute my python program like c program I compile it on linux and then I can execute on any linux system

Upvotes: 1

Views: 197

Answers (2)

Mad Scientist
Mad Scientist

Reputation: 18553

You'll have to use something like Py2Exe for Windows, or Freeze for Linux. And there is also the cross-platform cx_Freeze.

Upvotes: 3

Joonas Pulakka
Joonas Pulakka

Reputation: 36577

You can use Freeze to make Linux binaries. py2exe is essentially the same thing for Windows.

Upvotes: 4

Related Questions