I\'m trying to pack my app Python3, PyQt5 for Windows using cx_Freeze. I\'ve installed Python 3.4.3, Python-win32, PyQT5, cxfreeze. Application itself, run in console, works
you could try this:
add 'libEGL.dll' to your working folder. This is from Python3x\Lib\site-packages\PyQt5
In cx-freeze setup.py add:
if sys.platform == "win32": includefiles = ['libEGL.dll'] #here you should add other files if you need to
In cx-freeze setup.py link "includefiles" to build_exe_options like this:
build_exe_options= { ... ... 'include_files': includefiles, }