execution speed increase after compile py code into exe?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Kelie

    #1

    execution speed increase after compile py code into exe?

    hello,

    would there be any speed increase in code execution after python code being
    compiled into exe file with py2exe?

    thanks,

    kelie

  • Paul Rudin

    #2
    Re: execution speed increase after compile py code into exe?

    Kelie <kf9150@gmail.c omwrites:
    hello,
    >
    would there be any speed increase in code execution after python code being
    compiled into exe file with py2exe?
    AIUI that's not what p2yexe is about - it's essentially about
    packaging up your python program for ease of distribution and
    installation on windows boxes.

    However, you might find that you can get significant speed-ups by
    using psyco <http://psyco.sourcefor ge.net/>, on x386 type hardware at
    least.


    Comment

    Working...