Top "Py2exe" questions

Py2exe is a python extension that converts Python Scripts to Windows Executables.

py2exe doesn't find all dependencies

I am trying to create an exe from python code. I can run the code just fine from the command …

python py2exe cx-freeze
Access denied using Py2exe

I'm using Py2exe to create an executable as a windows service. When I run the script I get this …

python windows-services py2exe
How to package Twisted program with py2exe?

I tried to package a Twisted program with py2exe, but once I run the exe file I built, I …

python twisted py2exe
Exe created with py2exe doesn't work and returns logfile with errors

It's my first post so go easy on me. My problem is similar as in here, but I couldn't make …

python numpy scipy py2exe logfile-analysis
Python, PyInstaller error: no module named "Encodings" and system codec missing

I am using Python 3.3.3 and I have been trying to build a .exe from a simple .py script. My script …

python exe py2exe pyinstaller
Is there a way to specify the build directory for py2exe

I can set the final dist directory of py2exe using the command line: python setup.py py2exe -d "…

python py2exe
Running compiled python (py2exe) as administrator in Vista

Is it possible to programaticly run compiled Python (comiled via py2exe) as administrator in Vista? Some more clarification: I …

python windows-vista permissions py2exe
Window Icon of Exe in PyQt4

I have a small program in PyQt4 and I want to compile the program into an Exe. I am using …

python windows qt qt4 py2exe
Python - Py2exe can't build .exe using the 'email' module

py2exe does not work with the standard email module Hello. I am trying to use py2exe for converting …

python winapi py2exe
cx_freeze how to include 3rd party modules, ImportError: No module named progressbar

i came across a problem when using cx_freeze, how to "include" 3rd party modules or packages ? according to the …

python packages py2exe pyinstaller cx-freeze