Top "Py2exe" questions

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

How to install the py2exe modul in Linux

I downloaded the actual py2exe package. But I've no idea how to get it in my system. I mean …

python installation py2exe
Py2Exe "Missing Modules"

I'm trying to convert my python project into an exe using Py2Exe. It is worth noting that cx_freeze …

python python-3.x gtk py2exe
multiprocessing.freeze_support()

Why does the multiprocessing module need to call a specific function to work when being "frozen" to produce a windows …

python multiprocessing py2exe pyinstaller cx-freeze
python NameError: name '__file__' is not defined

i try compile this script whit py2exe : import os file1 = os.path.dirname(os.path.realpath('__file__')) …

python py2exe
Error: "MSVCP90.dll: No such file or directory" even though Microsoft Visual C++ 2008 Redistributable Package is installed

I'm trying to build a package from source by executing python setup.py py2exe This is the section of …

python visual-c++ python-2.7 py2exe
No module named machinery

I am trying to make exe using py2exe in Python. When I import py2exe I am getting error …

python py2exe
Making a portable (exe) with Python 3.1?

Is there a way to make a portable/stand-alone exe for python apps? I've read about p2exe but it …

python py2exe
Py2exe - win32api.pyc ImportError DLL load failed

I am trying to use py2exe to distribute a python application I have written. Everything seems to go OK, …

python py2exe
Hiding console window of Python GUI app with py2exe

I have a Python program uses Qt (PyQt4 in fact) and when I launch it from its main.py, I …

python pyqt pyqt4 py2exe
Creating single EXE using py2exe for a Tkinter program

I'm trying to use minty's solution provided on this link to generate a single exe file for my Tkinter based …

python tkinter py2exe