cx_Freeze is a set of scripts and modules for freezing Python scripts (.py) into executable files (.exe) for either Windows or Linux.
1
vote
1answer
18 views
cx_freeze module dependency
So my python script depends on another module I created. This module reads in a text file. The script, the module, and the file it reads are normally in the same directory when I run from source and ...
0
votes
1answer
14 views
win32com error with cx_freeze and pyttsx
Hi guys have a python software that i want to freeze for distribution. The problem is after freezing it with cx_freeze and i run it, it works fine on my development computer (win 7) but when i sent it ...
1
vote
1answer
37 views
Google API and cx_Freeze not working properly
I have made a Python program that is capable of uploading files into Google Drive. The .py file works perfectly and does not give any errors.
But as I'm going to distribute it for people who do not ...
0
votes
0answers
17 views
TypeError when compiling openGL with cx_freeze
I have a small pygame script and I want to compile it; I used this file as setup.py:
import sys
from cx_Freeze import setup, Executable
setup(
name = "AlGem",
version = "0.1",
...
0
votes
0answers
27 views
Cx_freeze Python 3.3 with SWIG
I plan to use SWIG (C++) together with Python 3.3; Tkinter as front end. The idea is to use Python to select a file (string), have C++ count the missing values, and return it as a string.
Will it be ...
0
votes
0answers
21 views
Using esky (and cx-freeze) with static files
I'm attempting to use Esky to update and freeze a python application. However, part of the application includes static files.
The way Esky appears to behave, is it creates a second .exe outside of ...
0
votes
0answers
36 views
cx_freeze can't find Module ElementC14N for my project with xml.etree.ElementTree
I am using xml.etree.ElementTree in my project and it seems cx_freeze has some troubles with it. Other modules (from python and my own) are included correctly - the application does even start from ...
0
votes
0answers
28 views
OSX application on Lion, not working
I have an application which has been been built on OSX Mountain Lion using Python and CX_Freeze. This application will install and run on Mountain Lion without issue.
A problem seems to arise on OSX ...
1
vote
2answers
653 views
ImportError: cannot import name MAXREPEAT with cx_Freeze
I'm running into an issue with cx_Freeze when running a frozen application (works fine unfrozen).
When running the program it results in the following traceback:
Traceback (most recent call last):
...
1
vote
1answer
34 views
Cx_freeze error lost sys.stdin
This is a problem that has been bothering me for a while. I have looked it up, but found no answer. I have also tried figuring it out myself, but have not succeeded. Whenever I create and try to ...
0
votes
0answers
111 views
Python 3.3 and cx_freeze: Failed loading libvorbisfile.dll despite a 64-bit Pygame?
Yet again, more Pygame/cx_freeze hell.
I have a game I'm making primarily on Ubuntu 13.04. cx_freeze (the latest version) works fine there, no complaints (yet!). However, I'm trying to build my ...
4
votes
1answer
157 views
How to create a standalone executable file from Python 3 script?
I've made a program lately that uses Tkinter in Python 3.3. I would like to distribute the program as a simple executable file that does not require an installation. I've had a lot of experience using ...
0
votes
0answers
77 views
cx_freeze and scipy: “ImportError: cannot import name vode”
i am trying to create an executable from my python script. My script runs fine, but after freezing it, starting the .exe gives me the following error:
...
2
votes
1answer
92 views
Freezing shared objects with cx_freeze on Linux
I am trying to CX_Freeze an application for the Linux Platform. The Windows MSI installer works perfectly but the Linux counter-part doesn't really function the way I want it.
When the package is ...
1
vote
1answer
110 views
cx_freeze pyqt4 example (“\samples\PyQt4”) doesn't work
My System:
Windows 7, x64, Python 3.3.1, PyQt4 4.10 using Installer (py3.3-Qt5.0.1-x64), cx_freeze 4.3.1 (win-amd64-py3.3)
What worked:
Navigating in Terminal to the ...
0
votes
0answers
36 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 ...
0
votes
0answers
21 views
Packaging numpy with cx_freeze
I'm on Windows, running Python 3.3 (32-bit) and trying to package an app with cx_freeze that uses numpy.
The build seems to work fine, but when I try to run the app, I get an ImportError:
...
1
vote
1answer
28 views
Adding start menu shortcuts with cx_Freeze installer for Python
Having made and tested my .msi installer using cx_freeze, it all works except for one vital part from the point of view of the end user: no start menu or desktop shortcut can be created by ticking a ...
0
votes
0answers
84 views
Why will .exe created with cx_freeze not run? It tells me: python33.dll is not found
I have successfully frozen my Python 3.3 application using cx_Freeze into an .exe and it runs fine until I move the enclosing folder which contains image files and suchlike to another folder or try on ...
0
votes
0answers
108 views
MSVCR100.dll, 0xc000007b Python cx_freeze
I finished my first program! I'm having trouble making a binary using Python 3 and cx_freeze. The binary runs on my computer, but on another computer I'm testing it on, I get the message "Can't find ...
0
votes
1answer
114 views
Having problems with making an .exe with cx_freeze with python and pygame, including additional files
I'm having trouble creating an .exe file with cx_Freeze. I'm trying to use this Pygame game which needs some .png's, .gif's and .ogg's to run. I have tried to compile a simple Python only (no pygame ...
1
vote
0answers
30 views
Compile PySNMP with cx_freeze
I write a small python 3.3 script that query devices by pySNMP.
I compiled the script with cx_freeze (No errors) but I have a problem:
When I ran the script I had an error regarding MIB files (*.py) ...
0
votes
1answer
30 views
Add libraries after create binary Cx_Freeze Python
I have a piece of code that dinamically import some library and use it. It works perfct.
The problem is that I am using Cx_Freeze to convert the python code to exe. It works fine but I need to add ...
2
votes
2answers
49 views
Hiding the console window
problem
I started designing GUI applications using Python and Tkinter. When I freeze a script using cxFreeze then when I run that EXE file on a machine. Then first the console window (a black DOS ...
0
votes
1answer
64 views
No initscrip name console - CX_freeze
I have been trying to get cx_freeze working on ubuntu, but when i try to run the "python setup.py build" i get the following error:
cx_Freeze.freezer.ConfigError: no initscript named Console
I have ...
1
vote
1answer
61 views
cx_freeze won't create a correct .exe for python 3.1.1
I use python 3.1.1, and I have been trying to compile a program i wrote earlier today, I think the code is short enough to post below.
from tkinter import *
class Application(Frame):
""" GUI ...
0
votes
1answer
112 views
cx_freeze embedding my shared object library into the binary executable?
I'm able to use cx_freeze to package my python tool, but the library I need can't be loaded. For some reason the outputted executable/binary name keeps getting included in the path.
I get the ...
0
votes
1answer
93 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
2answers
93 views
Can't run Pygame script that plays a OGG file compiled through cx_Freeze
When I compile the following script:
# play.py
import os, re
import pygame.mixer
pygame.mixer.init(11025)
pygame.mixer.music.load('song.ogg')
pygame.mixer.music.play(-1)
os.system("PAUSE")
Using ...
0
votes
1answer
119 views
Making an .exe for pygame with cx-freeze
I've created a game in Python 3.2 and tried to turn it into a .exe with cx-freeze but when I try to run the .exe, I get an error.
The Game
import pygame, sys, random
from pygame.locals import *
...
1
vote
1answer
102 views
Use cx-freeze to create an msi that adds a shortcut to the desktop
I am using cx-freeze to create an MSI installer for a Python application. How can I install a link to the application from the desktop?
2
votes
2answers
190 views
Use WiX or Inno Setup to bundle the installation of several MSI files
I use cx-freeze to create an MSI installer for a Python application. Let's call it application "A". It depends on another application "B". I would like my installer for "A" to include and run the MSI ...
0
votes
0answers
70 views
sip initialisation failing when using cx_freeze 4.3.1 on OSX10.6 with Python 3.3 and PyQt 4.10
I've used cx_freeze to create an app on OSX 10.6 but I get the following error when running the app:
File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/importlib/_bootstrap.py", ...
-1
votes
1answer
213 views
Creating an actual, executable program from Python code
I very recently wrote a program for a friend where it simplifies some important daily calculations for him/her. Now, the problem I am having is that I want to compile the code into an executable ...
0
votes
1answer
138 views
cx_Freeze won't work with pygame (already tried “import pygame._view”)
I'm trying to use the following setup.py:
from cx_Freeze import setup, Executable
exe = Executable(
script="stars.pyw",
)
setup(
executables = [exe]
)
To build the following Pygame ...
1
vote
0answers
138 views
exe file not running (cx_Freeze + PySide)
After freezing my Python programs using cx_freeze, I tried to run exe file created but its not running.
PhoneBook.py
import sys
from PySide.QtCore import *
from PySide.QtGui import *
from ...
1
vote
1answer
170 views
cx freeze does not work
i am new to python, i have wrote script using python and wxpython in linux machine. Now i want convert .py to .exe ,i used cxfreeze for that purpose. steps followed to create exe
$ python ...
1
vote
0answers
45 views
How do I build cx_freeze from source?
I tried to install cx_freeze on my computer (windows) with an msi, but the installation kept failing saying something like "one or more needed files could not be found." Because installing from a ...
0
votes
0answers
31 views
The cx_freeze installer repeatedly fails on me
I wanted to compile one of my smaller projects, so I went ahead and downloaded cx_freeze from the official website. I ran the installer, and told it that I wanted to install for all users, and upon ...
0
votes
1answer
216 views
cx-freeze doesn't find all dependencies
I have a python script (2.7) with some "interesting" imports at the top. I initially wanted to use py2exe to compile this into an exe that I can more easily distribute (py2exe doesn't find all ...
0
votes
3answers
117 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: ...
0
votes
0answers
98 views
Installing cx_Freeze in Linux
I am installing cx_Freeze in Linux but it doesn't work:
[root@STATE lib]# rpm -ivh /root/cx_Freeze-4.3.1-py33-1.i386.rpm
Preparing... ########################################### [100%]
...
1
vote
1answer
108 views
Python/SciPy - Creating an executable
I have a short python-script that uses SciPy, which runs perfect, but i have trouble converting it into an executable.
I use Windows 7 64bit and Python 2.7, with the Numpy/SciPy Version from Christoph ...
0
votes
1answer
107 views
Python 3.2: cx_freeze compiles my program, but in debug mode
I'm making a game with Python 3.2 and Pygame. I've successfully managed to use cx_freeze to bundle everything into an executable, and it runs. Fine. The only problem is, even when I pass the -OO ...
0
votes
1answer
133 views
How to use cx_freeze in Windows to create a package to be used in Linux
I am using Python31 and cx_freeze to create executables on Windows machine. The executables work perfectly on all Windows systems. But they do not run on Linux. What changes should I do in my setup.py ...
0
votes
1answer
235 views
Python 3.3 cx_freeze weird error: 'NoneType' object has no attribute 'path'
So, here's my problem.
I'm making a game in Pygame and Python 3.3, using Ubuntu 12.10. Fine. I'm gonna bundle a bunch of Python scripts into one executable, then distribute it. Also fine. I'm ...
0
votes
1answer
100 views
Requests library: missing file after cx_freeze
I'm building an application in python 3.3 which uses the requests library.
When I try to get a URL with SSL connection I want to verify it with verify = true.
This works perfectly when running my ...
0
votes
1answer
163 views
Icon not showing in PyQt application exe when built using cx_Freeze
I know this has been asked a bunch of times in this forum, but I really can't get my application icon to work when I build my PyQt application into a working exe-file using cx_Freeze.
I have copied ...
0
votes
1answer
103 views
How can I include a folder with cx_freeze?
I am using cx_freeze to deploy my application. I would like to include a entire directory since including individual files doesn't put them in a folder. How can I include a folder?
0
votes
1answer
75 views
cx_Freeze python exe conversion no modual named “re”
I am trying to convert a python script into an exe using cx_Freeze, but after converting it and trying to run it, it comes up with the erre "no modual named "re"". Im not sure what that is, but I dont ...





