WooHoo! py2exe Works!

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • true911m
    New Member
    • Dec 2006
    • 92

    WooHoo! py2exe Works!

    Today I created my first working Python Windows GUI .exe, and ran it successfully on a machine without Python installed. :)
  • bartonc
    Recognized Expert Expert
    • Sep 2006
    • 6478

    #2
    Originally posted by true911m
    Today I created my first working Python Windows GUI .exe, and ran it successfully on a machine without Python installed. :)
    Tell us how! I've got py2exe, but haven't used it yet. What's your tool?

    Comment

    • true911m
      New Member
      • Dec 2006
      • 92

      #3
      Originally posted by bartonc
      Tell us how! I've got py2exe, but haven't used it yet. What's your tool?
      I used py2exe. I just used the most basic example on the web page, which is the only documentation at this point.

      It did turn a 17kb source file into an 11.9MB executable, though, so I think there's room for streamlining the process....

      Comment

      • bartonc
        Recognized Expert Expert
        • Sep 2006
        • 6478

        #4
        Originally posted by true911m
        I used py2exe. I just used the most basic example on the web page, which is the only documentation at this point.

        It did turn a 17kb source file into an 11.9MB executable, though, so I think there's room for streamlining the process....
        You do know that the python execution engine is in there, right?

        Comment

        • true911m
          New Member
          • Dec 2006
          • 92

          #5
          Originally posted by bartonc
          You do know that the python execution engine is in there, right?
          Sure. But someone was pointing out that it stores much more than it needs for its purpose, like all of Tkinter (just an example), whether it's called on or not.

          Comment

          • bartonc
            Recognized Expert Expert
            • Sep 2006
            • 6478

            #6
            Originally posted by true911m
            Sure. But someone was pointing out that it stores much more than it needs for its purpose, like all of Tkinter (just an example), whether it's called on or not.
            Ooooh, good point.

            Comment

            • true911m
              New Member
              • Dec 2006
              • 92

              #7
              Originally posted by bartonc
              Ooooh, good point.
              OK, renamer-guy. :) I was more excited about my first GUI, but py2exe is good, too!

              Comment

              • bartonc
                Recognized Expert Expert
                • Sep 2006
                • 6478

                #8
                Originally posted by true911m
                OK, renamer-guy. :) I was more excited about my first GUI, but py2exe is good, too!
                Yeah, we like the titles to be topical to aid others in finding info.

                Comment

                • bvdet
                  Recognized Expert Specialist
                  • Oct 2006
                  • 2851

                  #9
                  Originally posted by true911m
                  OK, renamer-guy. :) I was more excited about my first GUI, but py2exe is good, too!
                  Congratulations ! I hope to get there one day as well.

                  Comment

                  • bartonc
                    Recognized Expert Expert
                    • Sep 2006
                    • 6478

                    #10
                    Originally posted by bvdet
                    Congratulations ! I hope to get there one day as well.
                    You will, BV. And we'll help you do it!

                    Comment

                    • Loismustdie129
                      New Member
                      • Aug 2006
                      • 194

                      #11
                      I more than hope to do it one day, I need some real help right now. I tried to use the baisc example on a web page on some website and it didn't work. I was wondering if you guys could help me with the py2exe and how to use it.

                      Comment

                      • bartonc
                        Recognized Expert Expert
                        • Sep 2006
                        • 6478

                        #12
                        Originally posted by Loismustdie129
                        I more than hope to do it one day, I need some real help right now. I tried to use the baisc example on a web page on some website and it didn't work. I was wondering if you guys could help me with the py2exe and how to use it.
                        Sure. Just start a new discussion with description and examples of what you have tried. Please include any error messages that you are getting.

                        Comment

                        • true911m
                          New Member
                          • Dec 2006
                          • 92

                          #13
                          Originally posted by Loismustdie129
                          I more than hope to do it one day, I need some real help right now. I tried to use the baisc example on a web page on some website and it didn't work. I was wondering if you guys could help me with the py2exe and how to use it.
                          Check out my new thread, Simple guide to using py2exe, for a walkthrough.

                          Comment

                          • bartonc
                            Recognized Expert Expert
                            • Sep 2006
                            • 6478

                            #14
                            I'm attempting to compile my very large project now. I did a google search for "py2exe gui" and guess what hit at the #4 spot. There were some other useful hits as well.

                            Comment

                            Working...