Search⌘ K
AI Features

Getting Started with cx_Freeze

Explore how to build Python executables with cx_Freeze. Learn to use the console script and simple setup scripts to package your Python programs. Understand basic command line arguments and how cx_Freeze handles modules automatically.

We'll cover the following...

As mentioned on the cx_Freeze website, there are three ways to use this script. The first is to just use the included cxfreeze script; the second is to create a distutils setup script (think py2exe) which you can save for future use; and the third is to work with the internals of cxfreeze. We will focus on ...