Tagged Questions
10
votes
2answers
1k views
Which is better - pyInstaller or cxFreeze
Could someone tell me which is better of the two for bundling Python applications — cxFreeze or pyInstaller? I'm looking for a comparison based on factors such as:
Popularity (i.e. larger user base)
...
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 ...
7
votes
1answer
266 views
Can I control the architecture (32bit vs 64bit) when building a pyinstaller executable?
Short Question
Is there any way to control / guarantee the architecture (32bit vs 64bit) when building a pyinstaller executable?
Background
I migrated from py2exe to pyinstaller because of the lack ...
6
votes
2answers
191 views
PyInstaller but keeping .py files upgradeable
I've managed to package my PyQt4 app as a "standalone" application on windows, it works.
However this application can upgrade itself, which is done by replacing the actual code written by me (.py ...
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
5answers
3k views
which build tool(s) do you recommend for python?
I'm starting a small/medium-sized python project, likely in Test Driven Development. My backgrounds are more in C and java than python (I used ant and makefile)
I know that in python you might not ...
4
votes
1answer
223 views
Bundling data files with PyInstaller (--onefile)
I'm trying to build a one-file EXE with PyInstaller which is to include an image and an icon. I cannot for the life of me get it to work with --onefile.
If I do --onedir it works all works very well.
...
4
votes
1answer
158 views
Python, Pyinstaller creating shortcuts in windows
I am making a python script that creates a shortcut (.lnk) file, using win32com.client module, I am using pyinstaller to convert it to exe. I'm also using Tkinter, so I need --tk support in ...
4
votes
2answers
1k views
How can I use pywin32 with a virtualenv without having to include the host environment's site-packages folder?
I'm working with PyInstaller under Python 2.6, which is only partially supported due to the mess MS have created with their manifest nonense which now affects Python since it is now MSVC8 compiled.
...
4
votes
4answers
2k views
Python 3.0.1 Executable Creator
Does anyone know if there's a windows Python executable creator program available now that supports Python 3.0.1? It seems that py2exe and pyInstaller, along with all the rest I've found, still aren't ...
4
votes
2answers
1k views
Create plugins for python standalone executables
how to create a good plugin engine for standalone executables created with pyInstaller, py2exe or similar tools?
I do not have experience with py2exe, but pyInstaller uses an import hook to import ...
4
votes
3answers
1k views
Tiny python executable?
I plan to use PyInstaller to create a stand-alone python executable. PythonInstaller comes with built-in support for UPX and uses it to compress the executable but they are still really huge (about ...
3
votes
1answer
272 views
Compiling python code into a single exe
I've been trying to compile python code into a single exe, and i didn't manage to do it correctly.
I've tried pyinstaller, and this is the .spec file:
# -*- mode: python -*-
a = ...
3
votes
3answers
198 views
pyinstaller seems not to find a data file
Edit 3: I replaced __file__ with sys.argv[0], when I need to know the location of my script/executable. This is not exactly the same, but in my case it seems to run fine (at least on executable ...
3
votes
1answer
474 views
Comprehensive tutorial on Pyinstaller?
I'm looking for a tutorial on PyInstaller that will explain things like
how to create .pkg files
how to include/exclude modules
how to include data files inside the install directory.
I cannot ...
3
votes
0answers
447 views
Python: Compiling with Pyinstaller
So I'm trying to create a executable binary file with Pyinstaller. Upon building the file 'warnpython.txt' appears bearing this message.
W: no module named msvcrt (conditional import by subprocess)
...
3
votes
1answer
254 views
Libraries not imported when creating a Python executable with pyinstaller
I am trying to build a Python .exe for Windows and am able to create it fine. However, when I run the application, I notice that it cannot perform all of its functions because not all the libraries ...
3
votes
2answers
203 views
pyinstaller: 2 instances of my cherrypy app exe get executed
I have a cherrypy app that I've made an exe with pyinstaller.
now when I run the exe it loads itself twice into memory. Watching the taskmanager shows the first instance load into about 1k, then a ...
2
votes
1answer
33 views
Packaging multiple scripts in PyInstaller
I'm using PyInstaller to turn two scripts into one executable file, one of which calls the other. The issue I'm having is I can't figure out how to bundle the two scripts and still let them reference ...
2
votes
0answers
122 views
PyInstaller Problem
I created an exe version of my python program with pyinstaller. But When I try to run my app from
that exe I get an error like this:
What may the problem be caused from?
Thanks in advance.
2
votes
2answers
180 views
PyQt: best way to do the trick “start at boot” for my program in Windows
I'm using PyQt to develop an application that in Windows, if set in preferences, should be able to start at boot.
I'm releasing this software with PyInstaller as a single executable file; i don't ...
2
votes
3answers
856 views
py2exe/pyinstaller and DispatchWithEvents
I have a program that uses the win32com library to control iTunes, but have been having some issues getting it to compile into an executable. The problem seems to revolve around using ...
2
votes
1answer
423 views
python cx_Freeze egg problem
im trying to build an executable (for 32bit windows xp) from a python script (which uses lots of eggs)
i considered py2exe(0.6.9), PyInstaller (1.4) and cx_Freeze (4.1.2)
py2exe doesnt like eggs for ...
2
votes
2answers
129 views
pyinstaller exe's not dying after sys.exit()
I have a cherrypy app compiled with pyinstaller. One function does the following:
cherrypy.engine.stop()
sys.exit()
the cherrypy engine stops without problem, but the process doesn't actually die ...
1
vote
0answers
65 views
Build images and some configuration files like txt and xml files with pyinstaller
I have a trouble with pyinstaller when adding some data files like images and txts to python program. For example, I have created a toolbar with icons and I store this icon in a seperate folder named ...
1
vote
0answers
44 views
Python EXE (pyinstaller) and reloading directory of dynamic imports
I've created a wxPython (not sure if it's relevant) executable with pyinstaller that has a particular task of loading and executing python scripts from a directory that gets added using ...
1
vote
2answers
136 views
Distributing Python apps
Quick question... Once I build a .py app, with wx gui, etc... I can compile it with pyinstaller or cx_freeze, and send the binaries to my servers, correct?
Is this a good way to distribute a script? ...
1
vote
0answers
131 views
How to create hook modules for PyInstaller?
I've recently made a script using PyQt and a few other packages that I'd like to distribute to other people, and I've been trying to get it into an exe using PyInstaller.
The problem I encounter ...
1
vote
1answer
200 views
Python: Excluding Modules Pyinstaller
Greetings!
So I've began using Pyinstaller over Py2Exe. However I've rather quickly ran into a problem. How do I exclude modules that I don't want, and how do I view the ones that are getting ...
1
vote
1answer
125 views
Python binary executable with MSAA hangs on exit
I'm using python comtypes to get access to IAccessible interface for MSAA (Microsoft Active Accessibility) usage. After that we create binary executable using pyinstaller, so the problem is that on ...
1
vote
1answer
827 views
Why isn't pyinstaller making me an .exe file?
I am attempting to follow this guide to make a simple Hello World script into an .exe file.
I have Windows Vista with an AMD 64-bit processor
I have installed Python 2.6.5 (Windows AMD64 version)
I ...
0
votes
0answers
28 views
Error when compiling PyQt4 with Pyinstaller
In the past, I've used pycompiler (or 'pyinstaller') to compile my programs that use the PyQt4 framework to executable code, simply because py2exe.
I have switched computers recently and have not yet ...
0
votes
0answers
48 views
PyQt and pyinstaller: unable to load QIcon
I'm trying to compile my first application that uses PyQt. It compiles successfully, but if I try to run, it says:
WindowsError: [Error 2] : 'C:/Users/GHOSTM~1/AppData/Local/Temp/_MEI8722\\icons'
...
0
votes
1answer
91 views
PyInstaller error with PyQt when trying to build --onefile
I'm trying to compile a PyQt program using PyInstaller 1.5. Both of the following programs work fine for me when I use --onedir (the default), but this creates rather large programs. I want to use the ...
0
votes
1answer
158 views
Pyinstaller not working
I was trying to create a stand alone executable file using Pyinstaller. The process ranging from Configure to Makespec part went fine. But while processing Build.py , the following error was shown.
...
0
votes
0answers
112 views
pyinstaller 1.5.1, NameError: global name 'zipfile' is not defined, http://www.pyinstaller.org/ticket/308
problem
For some reason, pyinstaller is not working for me.... Can someone please help?
A bug was reported with similar circumstances here: http://www.pyinstaller.org/ticket/308
But it seems ...
0
votes
1answer
120 views
pyinstaller, NameError: global name 'quit' is not defined
Gents, I have a python script which runs just fine, but after running pyinstaller, I get the following on any quit() or exit() commands...
Makespec file:
# -*- mode: python -*-
a = ...
0
votes
1answer
142 views
I am having problems with creating executables with gui2exe
I decided to try gui2exe for making my executables, but I cannot get it to work, with neither PyInstaller, Py2exe or cxFreeze. It creates a non-starting executable (I run it, it starts loading, then ...
0
votes
1answer
62 views
Pyinstaller Activex Attribute Error with wxPython
For some reason, when I compile my app with Pyinstaller, it gives me an error when run:
Traceback (most recent call last):
File "<string>", line 2, in <module>
AttributeError: 'module' ...
0
votes
3answers
508 views
How to compile all resources into one executable file?
I've wrote GTK application with python.
All graphical user interface is in glade file, and there are some images used. I wish to compile my application into EXEcutable file. For that I'm using ...
0
votes
1answer
517 views
PyInstaller: “ImportError: No module named os”
I'm trying to learn PyInstaller. I created two simple files, Test.py:
import os
and Test.spec:
anal = Analysis (["Test.py"])
pyz = PYZ(anal.pure)
exe = EXE(anal.scripts, pyz, name="Test.exe", ...
0
votes
1answer
286 views
How to make PyInstaller work on wxPython using 2 stage creation with XRC?
Everyone suggests switch from py2exe to PyInstaller for making a standalone executable from Python scripts. Our first trial is to make a wxPython application which makes usage of lots of 2 stage ...
0
votes
1answer
271 views
PyInstaller error with email module
First create a script named test.py, with one line in it:
from email.MIMEMultipart import MIMEMultipart
Save it and run makespec.py and build.py, then I get the test.exe. This is what I get while ...
0
votes
2answers
605 views
Resulting .exe from PyInstaller with wxPython crashing
I'm trying to compile a very simple wxPython script into an executable by using PyInstaller on Windows Vista.
The Python script is nothing but a Hello World in wxPython. I'm trying to get that up and ...
0
votes
1answer
516 views
Pyinstaller ld-linux-x86-64.so.2 linking problem
I'm trying to deploy my Python based application on another Linux host. Pyinstaller works flawlessly as long as I run the generated executable on my own system.
On the target box I get this error ...