Hello,

I need to compile python3 script with cx_freeze
If PyQt4 with python3 is not installed on the operating system,
when I execute the program, it can't find ExtensionLoader_Pyqt4_QtNetwork.py
I try to find this file to add it to my x-freeze setup but I not find it.
Could you help me?

thanks

Olivier Fournier

os: Windows Vista or Seven 32bits
python 3.2.2
PyQt-Py3.2-x86-gpl-4.8.5-1


python prog sample:

PyQt4app.py

import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtNetwork import *

app = QApplication(sys.argv)
form = QDialog()
form.show()
app.exec_()


cx-freeze setup


import sys

from cx_Freeze import setup, Executable

setup(
         name = "simple_PyQt4",
         version = "0.1",
         description = "Sample cx_Freeze PyQt4 script",
         executables = [Executable("PyQt4app.py")])








------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2d-oct
_______________________________________________
cx-freeze-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/cx-freeze-users

Reply via email to