c:\python26\setup.py py2exe
Trying to run py2exe and when I get to command prompt I run the line above. However as opposed to converting my file it try’s to open it. What am I doing wrong?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You must create your own
setup.pyand then run it with py2exe:In your
setup.pyyou importdistutils,py2exeand show names of your scripts to compile. There is template for it. Then I usually create.batfile which compiles my scripts.Have you read py2exe tutorial?