is there any way to converts Python scripts into executable Windows programs on linux
i know py2exe and pyinstall will work well on windows
but i only has linux Environment
Asked
Active
Viewed 148 times
1

timger
- 944
- 2
- 13
- 31
-
1http://stackoverflow.com/questions/2950971/cross-compiling-a-python-script-on-linux-into-a-windows-executable – James Khoury Aug 22 '11 at 06:27
-
@James Khoury thanks i will have a look – timger Aug 22 '11 at 06:29
2 Answers
2
Why would you want to convert it to a windows executable on a linux platform? Anyway, I'd say you have two options:
- Use py2exe with wine (a Windows emulator). I've done this, and it works
- If that is not possible, you could try pyinstaller. I haven't tried it, but it seems to be sort of the same, but multi-platform

carlpett
- 12,203
- 5
- 48
- 82