Tagged Questions

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

learn more… | top users | synonyms

40
votes
10answers
15k views

py2exe - generate single executable file

I thought I heard that py2exe was able to do this, but I never figured it out. Has anyone successfully done this? Can I see your setup.py file, and what command line options you used? Basically I'm ...
26
votes
10answers
19k views

py2exe fails to generate an executable

I am using python 2.6 on XP. I have just installed py2exe, and I can successfully create a simple hello.exe from a hello.py. However, when I try using py2exe on my real program, py2exe produces a few ...
24
votes
5answers
4k views

Are there any alternatives to py2exe?

Are there any alternatives to py2exe?
14
votes
2answers
2k views

py2exe + sqlalchemy + sqlite problem

I am playing around with getting some basic stuff to work in Python before i go into full speed dev mode. Here are the specifics: Python 2.5.4 PyQt4 4.4.3 SqlAlchemy 0.5.2 py2exe 0.6.9 setuptools ...
13
votes
2answers
713 views

Does PyPy work with Py2Exe?

Does PyPy work with Py2Exe? If it doesn't, are there any similar solutions?
12
votes
1answer
2k views

Building executables for Python 3 and PyQt

I built a rather simple application in Python 3.1 using PyQt4. Being done, I want the application to be distributed to computers without either of those installed. I almost exclusively care about ...
11
votes
5answers
2k views

Create a standalone windows exe which does not require pythonXX.dll

is there a way to create a standalone .exe from a python script. Executables generated with py2exe can run only with pythonXX.dll. I'd like to obtain a fully standalone .exe which does not require to ...
11
votes
4answers
2k views

Where can I find a good tutorial for py2exe?

Can somebody point me at a good tutorial for py2exe? I've read over the official tutorial but it is rather light on details, compared to all the options one can use when building an executable out of ...
10
votes
4answers
10k views

py2exe for Python 3.0

I am looking for a Python3.0 version of "py2exe". I tried running 2to3 on the source for py2exe but the code remained broken. Any ideas? Thanks a lot.
9
votes
3answers
1k views

Cross-compiling a Python script on Linux into a Windows executable

I have a Python script that I'd like to compile into a Windows executable. Now, py2exe works fine from Windows, but I'd like to be able to run this from Linux. I do have Windows on my development ...
9
votes
1answer
3k views

Determining application path in a Python EXE generated by pyInstaller

I have an application that resides in a single .py file. I've been able to get pyInstaller to bundle it successfully into an EXE for Windows. The problem is, the application requires a .cfg file ...
8
votes
3answers
1k views

Self updating py2exe/py2app application

I maintain a cross platform application, based on PyQt that runs on linux mac and windows. The windows and mac versions are distributed using py2exe and py2app, which produces quite large bundles ...
8
votes
6answers
1k views

py2exe page says it is licensed under GPL, can I still use it in a python project that is not GPL?

This page says that py2exe is GPL licensed (bottom of the page) My concern is that you have to distribute some of the files they generate. I think this would be allowed with LGPL, but not GPL. ...
8
votes
1answer
4k views

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 got a "No module named resource" error. And I found the py2exe said: The following modules appear to be ...
7
votes
1answer
118 views

Bundling GTK resources with py2exe

I'm using Python 2.6 and PyGTK 2.22.6 from the all-in-one installer on Windows XP, trying to build a single-file executable (via py2exe) for my app. My problem is that when I run my app as a script ...
7
votes
2answers
396 views

Is it possible to build exe on Vista and deploy on XP using py2exe

I have created some program using python on Windows Vista. But I want to deploy it on Windows XP. Is it necessary to make new build on windows XP? Or there is possibility to make build that will work ...
7
votes
4answers
7k views

Py2Exe: DLL load failed

When trying to use py2exe to convert a simple Python game I made into exe format, it gave me the following error: Traceback (most recent call last): File "C:\Users\Tali\Desktop\2exe.py", line 4, in ...
6
votes
2answers
698 views

Using bundle_files = 1 with py2exe is not working

After some big frustration I did it! I converted my django app to an "exe" one to run as a single standalone app on windows (using cherrypy as a WSGI server) But When I try to to set py2exe's option ...
6
votes
5answers
361 views

As a newbie, where should I go if I want to create a small GUI program?

I'm a newbie with a little experience writing in BASIC, Python and, of all things, a smidgeon of assembler (as part of a videogame ROM hack). I wanted to create small tool for modifying the hex values ...
6
votes
2answers
1k views

multiprocessing problem [pyqt, py2exe]

I am writing a GUI program using PyQt4. There is a button in my main window and by clicking this button. I hope to launch a background process which is an instance of a class derived from ...
6
votes
2answers
2k views

Making a Windows .exe with gui2exe does not work because of missing MSVCP90.dll

I'm trying to compile my python script into a single .exe using gui2exe (which uses py2exe to create a .exe). My program is using wxWidgets and everytime I try to compile it I get the following error ...
6
votes
4answers
4k views

ImportError: no module named py2exe

I get this error when I try to use one of the py2exe samples with py2exe. File "setup.py", line 22, in ? import py2exe ImportError: no module named py2exe I've installed py2exe with the ...
6
votes
2answers
3k views

py2exe: Compiled Python Windows Application won't run because of DLL

I will confess I'm very new to Python and I don't really know what I'm doing yet. Recently I created a very small Windows application using Python 2.6.2 and wxPython 2.8. And it works great; I'm quite ...
6
votes
2answers
930 views

py2exe windows service problem

I have successfully converted my python project to a service. When using the usual options of install and start/stop, everything works correctly. However, I wish to compile the project using py2exe, ...
6
votes
12answers
2k views

Enabling JPEG support for QImage in py2exe-compiled Python scripts?

I'm trying to use a JPEG image in a QImage object from a Python script, with PyQt4. The script itself works perfectly, the image loads and can be manipulated and rendered and all. However, when I ...
6
votes
3answers
958 views

How to build PyQT project?

I have a simple PyQT project. I would like to know how to build it in Windows in such way, that it becomes runnable executable. I don't want to require user to install heavy QT framework for his ...
6
votes
4answers
3k views

Embedding icon in .exe with py2exe, visible in Vista?

I've been trying to embed an icon (.ico) into my "compyled" .exe with py2exe. Py2Exe does have a way to embed an icon: windows=[{ 'script':'MyScript.py', 'icon_resources':[(1,'MyIcon.ico')] ...
5
votes
2answers
284 views

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 "my/dist/dir" but I can't seem to set the file to use for the interim build directory. I've taken a ...
5
votes
2answers
461 views

Bundle a Python app as a single file to support add-ons or extensions?

There are several utilities — all with different procedures, limitations, and target operating systems — for getting a Python package and all of its dependencies and turning them into a single binary ...
5
votes
6answers
2k views

Process to convert simple Python script into Windows executable

I wrote a script that will help a Windows user in her daily life. I want to simply send her the .exe and not ask her to install python, dlls or have to deal with any additional files. I've read ...
5
votes
4answers
1k views

Windows Server cannot execute a py2exe-generated app

A simple python script needs to run on a windows server with no python installed. I used py2exe, which generated a healthy dist subdirectory, with script.exe that runs fine on the local machine. ...
5
votes
2answers
587 views

Py2exe: Embed static files in library.zip or exe file itself and transparently access them at runtime

Is there a way to have py2exe embed static files (and/or subdirectories of static files) in a library.zip and/or the exe file itself (with zipfile=None) and then transparently access these embedded ...
5
votes
2answers
651 views

Can Django be used with py2exe?

We'd like to create a Django Intranet application for mass market. We only need to support Windows users, and it needs to be very easy for a Windows admin (or "technical user") to deploy (baring in ...
5
votes
7answers
2k views

Py2Exe - “The application configuration is incorrect.”

I've compiled my Python program using Py2Exe, and on the client's computer we've satisfied all the dependencies using dependency walker, but we still get "The application configuration is incorrect. ...
5
votes
2answers
2k views

Troubleshooting py2exe packaging problem

I've written a setup.py script for py2exe, generated an executable for my python GUI application and I have a whole bunch of files in the dist directory, including the app, w9xopen.exe and ...
4
votes
1answer
207 views

Python 3 project into exe?

I've made my first Python program, using Python 3.2. Now I'm trying to figure out how to make it an executable. I pretty much only need it for Windows only. I've searched as much as possible and ...
4
votes
1answer
99 views

building executable using python,vtk and py2exe

Is it possible to create a binary executable with py2exe for vtk? Could someone provide a minimum working example or at least some hints? Py2exe is not necessary. If there is a working solution on ...
4
votes
2answers
392 views

executable made with py2exe doesn't run on windows xp 32bit

I created an executable with py2exe on a 64bit windows 7 machine, and distributed the program. On a windows xp 32bit machine the program refuses to run exhibiting the following behavior: a popup ...
4
votes
1answer
185 views

Simple license protection for Python app

Although there are quite a few questions like this, please bear with me as I think mine is different... I have a $5 Python app that I distribute using py2exe, py2app, and source for Linux. The app ...
4
votes
1answer
590 views

How to decompile an exe file compiled by py2exe?

How to decompile an exe file compiled by py2exe? just one exe file, didn'n have any zip file. how to decompile to pyc or pyo file?
4
votes
1answer
365 views

ImportError: cannot import name Publisher

I created succesfully an executable version (Py2exe, Pyinstaller) of my application. When I try to run the app from .exe, I get an error as follows in the log file: Traceback (most recent call last): ...
4
votes
1answer
750 views

Py2exe lxml woes

I have a wxpython application that depends on lxml and works well when running it through the python interpreter. However, when creating an exe with py2exe, I got this error ImportError: No module ...
4
votes
3answers
679 views

py2exe and numpy not getting along

I am trying to use py2exe-0.6.9.win32 to wrap up an application that I have written in Python2.6.5 using the following object libraries with associated download file names: matplotlib-0.99.3.win32 ...
4
votes
3answers
901 views

bundle_files = 1 fails with py2exe using matplotlib

I am trying to create a standalone application using py2exe that depends on matplotlib and numpy. The code of the application is this: import numpy as np import pylab as plt plt.figure() a = ...
4
votes
2answers
930 views

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 get a console window and the GUI window (on Windows, of course). Then I compile my program with py2exe and ...
4
votes
4answers
402 views

How can I run a py2exe program in windows without the terminal?

Could someone explain to me how can I run my py2exe program, a console program, without the terminal on Windows? I'm trying to make a program that re-sizes windows and it supposed to start with ...
4
votes
3answers
1k views

MemoryLoadError when trying to run py2exe application

I am attempting to bundle up a Python application using py2exe 0.6.9 and Python 2.6.4 on Windows. While the executable runs just fine on the system I used to build it, it fails when I attempt to run ...
4
votes
3answers
1k views

Py2exe: Embed static files in exe file itself and access them

I found a solution to add files in library.zip via: Extend py2exe to copy files to the zipfile where pkg_resources can load them. I can access to my file when library.zip is not include the exe. I ...
4
votes
3answers
488 views

what are the pros/cons of py2exe

im looking for simple script that will compile to exe , and i found py2exe before i decide to work with it , what do you think are the pros and cons of the py2exe tool?
4
votes
2answers
314 views

Importing the entire Python standard library

I need a way to import the entire Python standard library into my program. While this may seems like a bad idea, I want to do this is so py2exe will package the entire standard library with my ...

1 2 3 4 5 7