Reputation: 2179
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
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
Reputation: 36577
You can use Freeze to make Linux binaries. py2exe is essentially the same thing for Windows.
Upvotes: 4