Tagged Questions

cx_Freeze is a set of scripts and modules for freezing Python scripts (.py) into executable files (.exe) for either Windows or Linux. These executable files can run on a system without Python installed. cx_Freeze works with Python versions 2.3 to 3.2. The most current version of cx_Freeze is ...

learn more… | top users | synonyms

11
votes
2answers
1k views

Which is better - PyInstaller or cx_Freeze?

Could someone tell me which is better of the two for bundling Python applications — cx_Freeze or PyInstaller? I'm looking for a comparison based on factors such as: Popularity (i.e. larger user ...
9
votes
2answers
1k views

How can i bundle other files when using cx_freeze?

I'm using Python 2.6 and cx_Freeze 4.1.2 on a Windows system. I've created the setup.py to build my executable and everything works fine. When cx_Freeze runs it movies everything to the build ...
8
votes
4answers
3k views

Hide console window with wxPython and cxFreeze

I'm developing a Python application using wxPython and freezing it using cxFreeze. All seems to be going fine apart from this following bit: When I run the executable created by cxFreeze, a blank ...
6
votes
1answer
424 views

python 3 tkinter cx_freeze

It amazes me that this topic hasn't been given much attention There are 3 or 4 stackoverflow threads on this topic. None have resolved the issue. I would very much like to have this answered so I'm ...
5
votes
2answers
834 views

cx_freeze python single file?

I've been using cx_freeze for a while now and there is one thing I've really wanted to do: put ALL of the files into ONE executable that I can distribute. It's not really user friendly to send around ...
4
votes
1answer
60 views

Python packed EXE blanks screen for a second on windows how to stop this?

I have created an EXE from a python GUI program I have put together, this all works fine as far as function goes, but whenever someone runs it their screen goes black for a second then comes back to ...
4
votes
1answer
263 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
328 views

Can cx-freeze be used in Ubuntu to freeze a python script to a Windows executable?

When I use cxfreeze in Ubuntu, it automatically compiles the python script to a Linux executable. I've looked through the documentation extensively, and I can't find a way to freeze the script into a ...
3
votes
1answer
219 views

cx_Freeze missing modules error

I am new to Python and cx_Freeze. Please help me to get it working. And run the command: python setup.py build It is giving me the following error. Missing modules: ? System imported ...
3
votes
4answers
374 views

python: Can I run a python script without actually installing python?

I have some .py files I wrote that I want to run on a different machine. The target machine does not have python installed, and I can't 'install' it by policy. What I can do is copy files over, run ...
3
votes
2answers
748 views

SDL/Pygame failing to load PNG images with cx_Freeze

I'm running Python 3.1 on Windows and I'm trying to distribute my Pygame script as an executable via cx_Freeze. Right now it seems to be working except that the exe build can't load any of my images: ...
3
votes
1answer
797 views

cx_Freeze and PYC/PYD files

I'm using cx_Freeze to freeze my python program. On running cx_Freeze, a bunch of PYD files are created, a whole bunch of PYC files are put into a archive named library.zip and a few DLL files are ...
2
votes
1answer
156 views

Workaround read-only site-packages for cx_freeze

I'm currently trying to make cx_freeze to work on a Solaris workstation I have to work with, in order to make an executable from a Python script I have. Problem is, I'm not administrator of this ...
2
votes
1answer
129 views

cx_Freeze and moving files around

In cx_Freeze, is it possible to move all pyd files and the library.zip to some subdirectory? I can live with two dlls along with the exe but I'd rather hide 15 other files from my users, even if ...
2
votes
2answers
623 views

Freezing a dual-mode (GUI and console) application using cx_Freeze

I've developed a Python application that runs both in the GUI mode and the console mode. If any arguments are specified, it runs in a console mode else it runs in the GUI mode. I've managed to freeze ...
2
votes
1answer
438 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
1answer
353 views

Which files to distribute using cx_Freeze?

I'm using cx_freeze to freeze a Python script for distribution to other windows systems. I did everything as instructed and cx_freeze generated a build\exe.win32-2.6 folder in the folder containing ...
2
votes
1answer
424 views

Missing multiprocessing module when freezing Python code

I'm using cx_Freeze to freeze my Python code so I can distribute it as executable on Windows systems. It works fine but it's missing a few modules. I use some open-source libraries in my project e.g. ...
1
vote
1answer
39 views

Are cx-freezed executables hackable [closed]

Possible Duplicate: Can EXE generated by cx_freeze be completely decompiled back to readable Python code? I've used cx-freeze to convert a python script to an executable. Is it possible to ...
1
vote
1answer
101 views

issues with cx_freeze and python 3.2.2?

I'm trying to freeze a python 3.2.2 script with cx_freeze 4.2.3. PyQt4 is used by the source script, I'm not sure if that is a potential source of the issue. Python crashes during the build process. ...
1
vote
2answers
117 views

Creating a program in Python 3 for Windows users, cannot use PIL?

I wrote a fairly simple GUI program to automate a few processes for Windows users in Python (as it is the only programming language I am somewhat familiar with that will run on Windows). I would ...
1
vote
0answers
96 views

Cx_Freeze DLL load failed

I have been trying to use cx_freeze for some time now, and yet the same error always occurs import cx_Freeze.util ImportError: DLL load failed: %1 is not a valid win32 application I have tried ...
1
vote
1answer
210 views

cx_Freeze/ldap: ImportError: DLL Load Failed %1 is not a valid Win32 application

I am using cx_Freeze to convert my python program to an exe. It all runs fine when it is a .py however when I come to run the exe, I get the following traceback; Traceback (most recent call last): ...
1
vote
2answers
159 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
1answer
169 views

Distributing python on Mac, Linux, and Windows using cx_freeze: can I generate all apps from one platform?

I'm setting up a scripted build of a cross-platform python app (Python 3) and I'd like to create all the distributables from linux. Is that possible?
1
vote
1answer
641 views

Creating a Windows Executable with Python 3.2 & cx_Freeze

So I'm trying to package a python script into an exe that can run on a Windows machine without needing a python install. I'm running WIn7 & my application uses pywin32 & the launcher is a ...
1
vote
1answer
129 views

Problem with cx_freeze and utf-8 characters not showing

I'm trying to compile a python script which contains spanish strings. If i run the .py, it's displayed correctly. Compilation runs fine, but when I run the resulting .exe, the non-ascii characters ...
1
vote
0answers
164 views

python: pywintypes.com_error when running from CDRom but not HD

I have a small bit of code (part of a larger program) that just checks the drive letter and status of the CDROM import wmi print '--checkCDContent--' c=wmi.WMI() cdrom = c.Win32_CDROMDrive() status ...
1
vote
1answer
174 views

Python Pmw and cx_Freeze?

I am unable to make an executable from my python program which uses Pmw (Python mega widgets). I use cx_Freeze (through gui backend "Gui2Exe"). Searching Pmw site I've found that it's caused by how ...
1
vote
3answers
277 views

UnicodeDecodeError only with cx_freeze

I get the error: "UnicodeDecodeError: 'ascii' codec can't decode byte 0xa0 in position 7338: ordinal not in range(128)" once I try to run the program after I freeze my script with cx_freeze. If I run ...
1
vote
1answer
384 views

Can EXE generated by cx_freeze be completely decompiled back to readable Python code?

I'm new to python, and I'm evaluating developing desktop programs with Python + PySide, and found that cx_freeze works very good in converting my python code into executables, and it's cross-platform. ...
1
vote
1answer
360 views

Using cx_Freeze (Python 2.7) on a Windows box OOTB

I have been plagued with this problem ever since I started with Python, I want to write a Python script, and then export it as an EXE that I can run on any Windows XP (and up) machine. cx_Freeze ...
1
vote
3answers
849 views

Unable to import xlrd module

Few of the packages which my executable script is using are dependent on xlrd module. So I tried to include this module in the setup script by using the include option as shown. But when the ...
1
vote
0answers
114 views

How to get executable to use the included files

i am creating a executable of python file using the cx_freeze. The problem that i am facing is that when i create the executable including the files(created by me) which are imported in the code of ...
1
vote
0answers
440 views

Cx_freeze exe troubleshooting

I wrote an application using wxpython and boa constructor. This application stores class instances in ordered dictionaries (I import odict) and ultimately stores the data in a shelve on the local ...
1
vote
1answer
389 views

pyqt application lost icon after packaged by cx_freeze

I have a pyqt application whose icon is in a resource file. I can see the icon when run the application using python app.py. But after I package the application using cx_freeze, the icon is missing. I ...
1
vote
1answer
263 views

Vista User Access Controls with cx-freeze/python script

I'm trying to build a python script and freeze it with cx-freeze but with Vista User Access Control support. As it stands my script runs fine under Server 2003/Win XP, however I need to be able to ...
1
vote
1answer
180 views

Can python3.1 scripts be freezed in mac os x using cxfreeze?

I m new to this and i need to freeze python3.1 scripts so that it can be run in other machines which does'nt have python3.1. CXFREEZE is the one which supports python 3.1 as far as i know. But i ...
1
vote
2answers
108 views

distributing independent python app to other machines

I created independent python app using cxfreeze under linux and can run it other machines without python and other dependencies. But while doing it for mac OS X, in other machines the app searches ...
0
votes
1answer
37 views

py2exe: UnicodeDecodeError (can't decode byte 0xd1)

I'm trying to freeze my application for Windows. It uses PyQt4 and was build on Python 2.7. All compilates and works good, but only on my PC. On other PC, which doesn't have Python installed, there is ...
0
votes
0answers
50 views

Cx_Freeze %1 is not a valid win32 application [closed]

Possible Duplicate: cx_Freeze/ldap: ImportError: DLL Load Failed %1 is not a valid Win32 application I have been trying to use cx_freeze for some time now, and yet the same error always ...
0
votes
1answer
77 views

exe created using cx_freeze not working properly

use=input('what do you wanna do \n1.press w to create a new file\n2.press r to read a file:\n') if use=='r': read() elif use=='w': write() else : print('OOPS! you enter a wrong ...
0
votes
1answer
94 views

Python - cxfreeze keeps saying file/directory non-existant

I've got some very basic code which works, and I want to turn it into an exe. Since I'm using Python 3 because it seems so much cleaner than other Python editions, I've not been able to use Py2Exe, ...
0
votes
2answers
81 views

Python, PySerial and cx-freeze

Trying to learn cx-freeze. I have a python program that I am trying freeze to exe. I use PySerial and no matter how I try to include win32 nothing seems to help. I use Python 3.2 and win7. I have ...
0
votes
1answer
41 views

Issue with cx-freeze application: It is running for only 1 second

I made a game in python, and then exported it with cx-freeze. For some reason, when I try to double-click on the application it opens a command line for about a second and then closes. However, when I ...
0
votes
3answers
41 views

Where do I issue commands?

When tools such as cx_freeze tell you to use a command such as "python setup.py build", where is this command issued? I have tried both the python command line and the Windows command prompt, but ...
0
votes
1answer
83 views

Using cx_freeze to combine 3 .py files into a standalone application?

Alright, I am building a PyQt GUI, and it has 3 files, one for the pictures, another that is the actual GUI, and another that actually starts the application. I have tried py2exe but since it is all ...
0
votes
0answers
63 views

cxfreeze generate exe file by packing pyo modules

I used the following cmd 'cxfreeze log2xml.py -OO' to create a exe file for my py file in cxfreeze 4.2.3, python 2.5 The exe was generated normally. However, the file size was too large to use. I ...
0
votes
2answers
122 views

DLL in sub folder rather than in application folder

have created a dynamic python file (pyd) using VC++. Using cx_freeze, I have created an exe. In order for this program to work on other computers, I need to have a file msvcr100.dll in the ...
0
votes
1answer
162 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 ...

1 2