I want to create the window executable file of my project , i dnt want to share the sourse code my project . i want to know where i started or which tool i use to create complete software . i use linux , py2exe not run in linux any other tool which is similar to py2exe

link|improve this question

67% accept rate
py2exe doesn't really hide your source code – David Heffernan Apr 19 '11 at 15:58
You can't hide your source code. If someone really wants to decompile your program, they'll do it. And Python is much easier to decompile than C++ and C, as it's "binaries" are pretty descriptive, so there's really no use in trying to hide the source. Py2exe just packages the generated binaries, so if I can extract your exe file, I can decompile your program with ease. – Blender Apr 19 '11 at 16:00
@Blender how to hide the sourse code or how to make the trial version of my software . can you provide me the link to any website or book from where i read the complete software development process – Arjun Jain Apr 19 '11 at 16:06
You can't. Read this question for more details as to why: stackoverflow.com/questions/261638/how-do-i-protect-python-code – Blender Apr 19 '11 at 16:08
If that's the question, there are countless duplicates (stackoverflow.com/questions/261638/how-do-i-protect-python-code being the most popular canidate) - so, is that the case? – delnan Apr 19 '11 at 16:08
show 4 more comments
feedback

4 Answers

up vote 3 down vote accepted

I'd use cx_freeze.

I've tried py2exe, and it doesn't handle dependencies as well as cx_freeze. Best of all, it's cross-platform! I've made Windows and Linux binaries with it, so I can confirm it works properly.

Here's a little tutorial to get you started: http://www.blog.pythonlibrary.org/2010/08/12/a-cx_freeze-tutorial-build-a-binary-series/.

link|improve this answer
feedback

Checkout http://www.py2exe.org/

Also look at this question: How to make an executable file in Python?

link|improve this answer
feedback

py2exe

link|improve this answer
i use linux any other tool similar to py2exe – Arjun Jain Apr 19 '11 at 15:55
feedback

py2exe - http://www.py2exe.org/

link|improve this answer
use linux any other tool similar to py2exe – Arjun Jain Apr 19 '11 at 15:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.