I have been given a project to do. One of the main essential requirements is that this is given to the customer to run as single exe. It does not matter which programming language, however it will be comparing files between a set of default files and the customer’s files. Is there any way I can do this so that I have one exe?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The py2exe library allows you to create exe files from your python code. I've not used it but it may do the job! Alternatively, you can try pyinstaller. See also: py2exe - generate single executable file |
|||
|
You're in luck! You can do just that with Python using the py2exe conversion utility. You can find it at: http://www.py2exe.org/ |
|||
|
|
jars rather thenexes. Using a Microsofty environment like you can have available with VB / C# makes it easier to generateexefiles so it may be a better choice here - but for that reason, not because it's inherently a better or worse choice! ;) – adamnfish Jun 26 '12 at 14:56