Building Standalone Python Applications with PyOxidizer

Building Standalone Python Applications with PyOxidizer

Today, I’m excited to announce the first release of PyOxidizer (project, documentation), an open source utility that aims to solve the Python application distribution problem! PyOxidizer’s marquee feature is that it can produce a single file executable containing a fully-featured Python interpreter, its extensions, standard library, and your application’s modules and resources. You don’t need to worry about whether you are running in a virtualenv, what is set to, whether files come into play, whether various environment variables can mess up your application, whether some Linux distribution packaged Python differently, what to put in your script’s shebang, etc: executables built with PyOxidizer behave as you have instructed them to because they are compiled that way.

Source: gregoryszorc.com