tags:

views:

59

answers:

2

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

+3  A: 

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

Fabian
+4  A: 

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

Joonas Pulakka