eHow launches Android app: Get the best of eHow on the go.

How To

How to Compile Python Code

Contributor
By eHow Contributing Writer
(19 Ratings)

Since Python is an interpreted language, compilation of Python code can mean many things, including compilation to byte code or transformation to another language. When you learn how to take Python code and compile it into an executable for Windows platforms, you can create a Python program and have Windows users seamlessly run it.

Difficulty: Moderate
Instructions

Things You'll Need:

  • Windows computer with a Python environment installed on it

    Set Up

  1. Step 1

    Create your Python program or import it into the Windows environment.

  2. Step 2

    Run your code in the Python interpreter and make sure there are no errors in the code:
    c:Python\> Python mycode.py

  3. Step 3

    Download the py2exe win32 compiler from the py2exe website (see Resources below).

  4. Step 4

    Save the downloaded file to disk.

  5. Step 5

    Open the downloaded file and click through the installation process. This should take a few seconds. The installation will create a py2exe.exe program in your distutils directory distributed with your Python installation that you will use to create the compiled code.

  6. Compile Python Code

  7. Step 1

    Open a new text file in Notepad or your favorite editor and save it as mysetupfile.py. This text file will tell the py2exe program which Python programs to convert into an exe.

  8. Step 2

    Add the following lines in the text file:
    from distutils.core import setup
    import py2exe
    setup(console=['mycode.py'])

    where "mycode.py" is the name of your Python program you wish to compile.

  9. Step 3

    Run the mysetupfile.py file through the py2exe program:
    c:\Python> Python mysetupfile.py py2exe

  10. Step 4

    Wait until the py2exe compiler finishes producing its output. If all goes well, the compiler may inform you of the DLLs that your Python program is dependent on once it finishes compiling.

  11. Step 5

    Wait until the compilation is done. Once it is, a directory called "dist" will be created. Enter the directory by type:
    c:\Python> cd dist

  12. Step 6

    Look in the directory to see an exe of your project. Test the compile by running the program:
    c:\Python> mycode.exe

Tips & Warnings
  • Frederick Lundh's Compiling Python web page has a rundown on a variety of different techniques and platforms to compile Python (see Resources below). You can find tips for compiling to byte code, Mac and Unix environments.
  • There are a number of Windows popular Python packages that may have gotchas when you are trying to compile. Some of these packages include wxPython, numPy and pyXML. If you are having difficulty with external modules or packages, consult the py2exe website (see Resources below).
  • The compilation process creates only an exe file, not a fully installable package. You will need to use a utility like MSI or Innosetup to create a full installer package once the exe is done.

Comments  

chr1573r said

Flag This Comment

on 11/10/2009 Worked perfectly for the purpose intended, thanks!

bunkbomb said

Flag This Comment

on 7/18/2009 Back in python, add a line of code that waits for a user response (e.g. raw_input("Press enter when finished with result")). The program then doesn't finish running until you've given input, letting you look at your result for as long as you like.

bunkbomb said

Flag This Comment

on 7/18/2009 Back in python, add a line of code that waits for a user response (e.g. raw_input("Press enter when finished with result")). The program then doesn't finish running until you've given input, letting you look at your result for as long as you like.
~bunkbomb

csreddy said

Flag This Comment

on 7/9/2009 The exe works fine, but when i click my exe file , the console shows the result and close immediately.Is there anyway to make console wait for it ?
Thanks,

Subscribe

Post a Comment

Post a Comment

Related Ads

  • Have you done this? Click here to let us know.
I Did This
Get Free Internet Newsletters

Copyright © 1999-2009 eHow, Inc. Use of this web site constitutes acceptance of the eHow Terms of Use and Privacy Policy.   en-US Portions of this page are modifications based on work created and shared by Google and used according to terms described in the Creative Commons 3.0 Attribution License.

Demand Media
eHow_eHow Technology and Electronics