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

learn more… | top users | synonyms

0
votes
1answer
18 views

py2exe not a valid win32 application

I know this topic has been discussed before but it looks like none of the solutions work for me. I have created a python application using Pyside.Core & PySide.GUI and a few other modules. When I ...
1
vote
1answer
10 views

py2exe not include automatically all *.pyd created with Cython

when creating pyd with Cpython, and want to create exe with py2exe, py2exe cannot gather all of them an their dependencies, so one forced to include them manually, anyone can help?
0
votes
0answers
21 views

Fixing SSL certificate error in exe compiled with py2exe (or PyInstaller)

I've just finished testing a Python programme which involves logging into a site and requires a CSRF cookie to be set. I've tried packaging it as an exe using py2exe and got a socket error. I have the ...
2
votes
0answers
12 views

py2exe , twisted, zope.interface

I am trying to create windows service of twisted project. windows service as a whole on python works, but when i covert it to py2exe . I have tried these link 1 link 2 link3 But nothing seems to ...
0
votes
1answer
36 views

exe created complains about ImportError: no module named pytz

I have created a python executable using py2exe. When I run the exe then I get the following error: I:\YYY\dist>gui.exe Traceback (most recent call last): File "gui.py", line 31, in ...
0
votes
0answers
29 views

How can I use py2exe with arcpy?

I'm trying to convert a python script to a stand-alone executable using py2exe. The script is built mostly using arcpy, with a Tkinter GUI. The setup.py script is as follows: from distutils.core ...
0
votes
0answers
36 views

Python program misbehavior when spawning processes from a py2exe file

My dad is working on a program that, among others, needs to ping a machine. It is multithreaded and he built a ping method that's be called from any one of the threads, when needed: def ping_cmd(ip): ...
0
votes
1answer
17 views

Is it possible to have a python shell in a py2exe build?

I distribute a software package for windows via distutils and py2exe. For development purposes, I'd like to be able to have access to a python console inside the py2exe build. I see there is a ...
0
votes
1answer
20 views

py2exe and disappeared icon

I am using pyqt, icon is added. icon.addPixmap(QtGui.QPixmap(_fromUtf8("favicon.ico")), QtGui.QIcon.Normal, QtGui.QIcon.Off) MainWindow.setWindowIcon(icon) In setup.py for py2exe, I am trying to ...
1
vote
0answers
58 views

Creating an executable from a python GUI using py2exe

I have a .py file that creates a GUI, which runs another script once I give it some information. I'm trying to make a .exe file from this GUI file using py2exe, but I've been having trouble. ...
1
vote
1answer
42 views

how to create exe of Python Code using opencv with or without py2exe?

i have some Python Code working properly its some kinda simple thing using opencv. for example import cv2 x = cv2.imread('Dog6.jpg') cv2.imwrite('new2.jpg') setup.py is from distutils.core ...
0
votes
2answers
21 views

python to exe convert part of the code

Very good, anyone know if I can make exe single piece of code in a script, for example: one file (hello.py): print('hello word') def exit(): print('good bye') two file (setup.py): from ...
0
votes
1answer
31 views

py2exe in C:\Windows\System32 on 64-bit Windows

I'm trying to run rdiff-backup under Windows 8 x64 which is written in python and apparently uses py2exe to create a Windows executable. It's written at their website that the Visual C++ 2008 ...
0
votes
2answers
79 views

py2exe [ImportError: No module named sqlalchemy]

I installed sqlalchemy-0.8.1 in my win7 via 'setup.py install' and "import sqlalchemy" works well But when I want to pack my files with py2exe, error occurs ImportError: No module named sqlalchemy ...
0
votes
1answer
16 views

Error generating .exe with py2exe

I'm genetating a .exe with python and when i try to run it, a .log is generated with the following lines: Traceback (most recent call last): File "cuasimodo.py", line 1077, in IOError: [Errno 2] No ...
0
votes
0answers
29 views

Freezing a Pyramid project with py2exe

As part of a proof-of-concept I'm doing, I made a "Hello, World" Pyramid application and then I tried freezing it with py2exe. I'm using a virtualenv environment, into which I installed Pyramid. My ...
0
votes
1answer
36 views

wxPython - py2exe - exe file old window

I'm using py2exe to convert my GUI application made using wxPython to a standalone single exe file. This is what i'm using in setup.py: from distutils.core import setup import py2exe includes = [] ...
0
votes
1answer
80 views

Issue compiling using py2exe on Windows 7 x64

I'm using py2exe to compile my script into an exe file to run on Windows, but I'm hitting errors based on my OS, which is Window 7 x64. I'm running the below script in cmd using execmaker.py py2exe: ...
1
vote
1answer
71 views

Python - GUI2EXE - AttributeError: 'module' object has no attribute 'Popen'

I use Python 2.7 and py2exe and recently I downloaded gui2exe latest version (5.3). But when I try to execute the 'gui2exe.py' file, it gives me an error: AttributeError: 'module' object has no ...
0
votes
0answers
29 views

BeautifulSoup4 Error in GUI Application Py2EXE

I have build a GUI application that uses BeautifulSoup4. After trial and error of finally getting it to open, the application doesn't work, and throws an info box when I close it saying to check the ...
0
votes
1answer
46 views

py2exe ImportError: No module named cssselect

I used pyquery in my App, when I run main.exe in the dist directory, the error occures: Traceback (most recent call last): File "main.py", line 4, in <module> File "zipextimporter.pyo", ...
3
votes
1answer
75 views

how to bundle .py files launched with execfile() on py2exe?

I'm developing a small tool on python which basically launches a set of scripts on a folder. I need to package this on a stand alone binary and I'm using py2exe for it. My current code use ...
0
votes
1answer
19 views

py2exe exe crashes when os module starts

py2exe crashes when I start a part of my program, the open folder program that uses os.listdir(). Everything works in the python shell, but fails when used in exe. I don't get any errors, in the exe, ...
0
votes
0answers
17 views

py2exe problems with os module

py2exe crashes when I start a part of my program, the open folder program that uses os.listdir(). Everything works in the python shell, but fails when used in exe. Here is my setup: from ...
0
votes
0answers
12 views

Font's clutter when make execute for windows with py2exe

I have an application that wroten by PySide and QML. But I make an exe for windows os my application font's don't show correctly! my setup.py from distutils.core import setup import py2exe setup( ...
0
votes
1answer
40 views

How to embed a text file into a single executable using py2exe

I have a python script which reads a large dictionary file which is stored as a .txt file. Now I want to make a single executable using py2exe. Currently, my setup looks like this: from ...
0
votes
2answers
59 views

How to make Python API using py2exe?

Is it possible to "compile" a Python script with py2exe (or similar) and then allow the user access to modify the top-level Python scripts? Or possibly import the compiled modules into their normal ...
0
votes
2answers
36 views

How do I make the application run in English Edition of XP while compiling it on the Chinese Edition of XP using py2exe?

I have compiled my Python program using py2exe in Windows XP (Chinese Edition), but it doesn't run on Windows XP (English Edition). When I run it in the English Edition of Windows XP, the window says: ...
1
vote
1answer
37 views

Requests lib and py2exe COM server issue

I'm working in a Com Server DLL where I use requests to make POST a multipart form along with some XML file. Localy, it works great and with no error. I can call the COM object methods and it returns ...
-1
votes
1answer
74 views

How to pack archive to executable .exe file?

I wrote a program in Python with GUI based on Tkinter and convert them to standalone windows program using Py2Exe, and now i have a big folder with help files and one .exe file. Do you know any ...
0
votes
0answers
43 views

error in creating executable for python script

I have created a application using python2.7 also used pyqt for gui. I have also used pybel module for computations. my application python file works properly. but when I try to create executable ...
1
vote
2answers
60 views

Running py2exe with multiple versions of python installed

I have both python 3.2 and python 2.7 installed. I am trying to compile a file, but since the default program for opening .py files is 3.2, it gives me an error for not having py2exe installed when I ...
0
votes
0answers
34 views

py2exe - installing a service and passing options

I want to create a service with py2exe and pass options when installing the service. If I run the script directly the function customOptionHandler gets called, but after compiling it with py2exe it ...
0
votes
0answers
45 views

creating an executable of a python application using py2exe

I'm stuck with creating an executable of my python program. My setup for creating an executable is as shown below, from distutils.core import setup import py2exe, sys, os sys.argv.append('py2exe') ...
0
votes
1answer
82 views

py2exe - MSVCR90.dll

I am trying to build a Python program with py2exe. I am getting this error when trying to run the built program: The program can't start because MSVCR90.dll is missing from your computer. Try ...
0
votes
1answer
113 views

pyPdf for Python 2.7 does not work with py2exe and cx_freeze?

everyone, I wrote a little program using pyPdf for Python 2.7. And it has been tested in Python. Now I want it to be converted to exe file to run it in Windows. Neither py2exe or cx_freeze works out. ...
0
votes
1answer
55 views

py2exe / cx_Oracle - OCI.dll in the resulting dist

I am trying to generate an executable for a python script that uses cx_Oracle module. The resulting distribution folder has OCI.dll in it which I would like to avoid as the target machine might have a ...
2
votes
1answer
113 views

How to create OpenGL 3.0 context using Pyglet

I'd like to make use of OpenGL 3.0 features (framebuffer objects, 2D texture array), but the default OpenGL context created by Pyglet does not support these. In the Pyglet source there is the ...
1
vote
0answers
82 views

py2exe python24 numpy error AttributeError “dtype”

from distutils.core import setup import py2exe from distutils.filelist import findall import os import matplotlib matplotlibdatadir = matplotlib.get_data_path() matplotlibdata = ...
0
votes
1answer
47 views

Very Weird windows service behavior when using py2exe

I coded out a windows service in python to write some text to a file continuously and installed it and ran it and it works fine. Now if I try to convert my python windows service script into an ...
1
vote
1answer
120 views

Making a standalone .exe file of a python script

I have a python script which contains: tempBook = temp.Workbooks.Open("c:\users\CNAME\desktop\Template.xlsx") Everything works fine but when I create a .exe of my script the Template.xlsx is not ...
0
votes
0answers
53 views

Py2exe executable with console attribute but without console window

Compiling a .py script into an executable, in the setup function of distutilis one must use the attribute windows or console. I have a small script that needs to stay hidden and thus without any GUI ...
1
vote
1answer
95 views

Error in py2exe python app using Chaco in pyside

I've a program that uses Enthought's Chaco plots embedded in a pyside (Qt4) GUI. It also uses numpy, but nevermind that. The program runs fine on multiple platforms directly from Python but when I ...
1
vote
1answer
42 views

Using Py2Exe without command line

Is it possible to compile a python script with py2exe without calling py2exe from the command line? >Python setup.py py2exe I'd like to run it all from a script, but haven't found a way to do ...
0
votes
3answers
153 views

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 line like this: python myScript.py I have installed py2exe from here: ...
2
votes
2answers
426 views

pack a software in Python using py2exe with 'libiomp5md.dll' not found

I have Python 2.7 on Window 7 OS. I wish to pack my project.py in an Executable using py2exe. Following the instruction i wrote a setup.py file from distutils.core import setup import py2exe ...
0
votes
1answer
76 views

My script opens a windows cmd prompt, need help pasting into it

I have written a Python program and used py2exe to make it into a windows executable program. When the program is run it opens a pseudo-cmd window for the user to interact with. (just using print ...
0
votes
1answer
54 views

Executable created with py2exe freezes when using webkit's open(url) function

I am using the GUI2Exe program to create my executable, and while I can build and start the executable, it crashed on a call to "open" the url. This is repeatable not only in my program but in the ...
-1
votes
2answers
80 views

How to launch Python application without installation? [closed]

I have python scripts. They have to run on the machines without python, so I compile py scripts to executables using py2exe. Python with py2exe should be installed to perform compilation. But I want ...
0
votes
1answer
51 views

py2exe failing with PyQt4 app only on bundling? [Win7 64-bit]

I hope this is not a repeat, since a few questions seem to cover the issue but none with conclusive answers. Python: PyQt4 Py2exe - No answer I've got a very simple script that launches a window ...

1 2 3 4 5 12