-4

Possible Duplicate:
How can I make an EXE file from a Python program?

i have x.pyw file with that i am calling y.py file which is there in another folder,so with that iam able to create exe for x.pyw but that file is not calling y.py,please help me how to create an exe for those both files

Community
  • 1
  • 1
shiva
  • 88
  • 1
  • 8
  • 2
    How are you creating the executable? How are you "calling" y.py? And why on earth are you tagging with both [python-2.7] and [python-3.x]? – Wooble Mar 31 '12 at 13:10

1 Answers1

2

I think Py2Exe is the one you want to create exe files of your python programs. However, there are even few other alternatives. This site itself has tons of question on it.

One similar question which will surely help:

How can I make an EXE file from a Python program?

Community
  • 1
  • 1
Surya
  • 4,824
  • 6
  • 38
  • 63