In <[EMAIL PROTECTED]>, [EMAIL PROTECTED] typed: > Dears, > > I found that I could convert all the python script to .exe. > Thus I can remove Pyhthon dependecy.
Are you sure? The only way I know of to convert a python script to .exe is with py2exe, which does it by creating an executable archive, and putting all the scripts that make up the program and the python interpreter in the archive. It doesn't remove the Python dependency so much as hide it. The downside is that you wind up with one copy of Python installed for every script. If you've only got one script, this is ok. If you've got more than one, you probably want to consider another approach. <mike -- Mike Meyer <[EMAIL PROTECTED]> http://www.mired.org/consulting.html Independent Network/Unix/Perforce consultant, email for more information.