Skip to content Skip to sidebar Skip to footer

Cx_freeze: Qodbc Driver Not Loaded

my python application looks like: test.py from PyQt4 import QtCore from PyQt4 import QtGui from PyQt4 import QtSql import sys import atexit if __name__ == '__main__': app =

Solution 1:

This woks only in your developer machine, but when you create a exe file and run this file in other machine it didn't work.

I use pyinstaller, and solve the problem.

only use:

pyinstaller --onefile--windowed myscript.py

Post a Comment for "Cx_freeze: Qodbc Driver Not Loaded"