problem about cx-freeze-Collection of common programming errors


  • user1389652
    pyqt pyqt4 cx-freeze
    I have a system,written on PyQt4. It is mostly developed and debug under linux (ubuntu) systems, in Eric IDE, and everything works fine. Last task was to create a nested editor for a table cell. So, i did it and it also looks nice in ubuntu. I also ran it under Windows 7 x64, and the behavior was the same.However, after making executable file with cx_Freeze in Windows 2000 (it’s weird, but this environment was configured before me), the editors behavior became unexpected. After opening Editor it

  • Sridhar Ratnakumar
    python windows windows-xp msvcrt cx-freeze
    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 covers all of this perfectly, the only problem is that it required Visual C++ Runtime to be installed on the client computer before the resulting EXE will run on it…Is it possible to convert my beautiful *.py file into a nice distributable EXE that will run on a fresh install of Windows XP and up?

  • cmh
    python postgresql shared-libraries psycopg2 cx-freeze
    I have built an executable using cxfreeze (inside a python3.2 virtualenv) on my local machine. The executable runs correctly on the local machine. I’m trying to run the executable on a separate target machine (of identical OS and architecture), but get the following error: …File “/home/chris/.virtualenvs/python3env/lib/python3.2/site-packages/psycopg2/__init__.py”, line 67, in <module>File “ExtensionLoader_psycopg2__psycopg.py”, line 18, in <module>ImportError: No module named Non

  • user2727932
    python pygame windows-vista compatibility cx-freeze
    I made a game with Python 2.6. I also made it into an executable with cx_Freeze 4.3. When I run the executable on my computer it came up with this:Microsoft Visual C++ Runtime LibraryProgram: C:\Users\smm\Desktop\asteroid shower 1.4.5\asteroid.exeThis application has requested the Runtime to terminate it in an unusual way. Please contact the application’s support team for more information.I don’t understand what happened here. I tried solving the problem but with no luck. Then I searched the run

  • Karnisov
    python pyqt4 cx-freeze
    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. Here is the command line output:C:\Python32\New Folder>python setup.py buildrunning buildrunning build_execopying C:\Python32\Lib\site-packages\cx_Freeze\bases\Win32GUI.exe -> build\exe.win32-3.2\app.execopying C:\WINDOWS\system32\python32.dll -> build\exe.win32-3.2\python32.dllPython itself crashes

  • xoolive
    python py2exe pyside pyinstaller cx-freeze
    I am trying to build a very basic executable (Windows) using PySide. The following script runs properly in the interpreter (Python 2.7, PySide 1.1.2)#!/usr/bin/pythonimport syssys.stdout = open(“my_stdout.log”, “w”) sys.stderr = open(“my_stderr.log”, “w”)import PySide.QtGui from PySide.QtGui import QApplication from PySide.QtGui import QMessageBox# Create the application object app = QApplication(sys.argv)# Create a simple dialog box msgBox = QMessageBox() msgBox.setText(“Hello World – using PyS

  • Sjuul Janssen
    python json cx-freeze
    The following python script runs fine:#!/usr/bin/python import simplejsonprint str(simplejson.loads(‘{“a”: “abc”}’))Then after freezing it:cxfreeze test.py –target-dir distTraceback (most recent call last):File “/usr/lib/pymodules/python2.7/cx_Freeze/initscripts/Console.py”, line 29, in <module>exec code in m.__dict__File “test.py”, line 3, in <module>import simplejson as jsonFile “/usr/lib/python2.7/dist-packages/simplejson/__init__.py”, line 111, in <module>from decoder impo

Web site is in building