Problem with PyQt 4.4.2 and Qt 4.4.0
On Windows XP 32 bit, I've installed:
- Python 2.5
- qt-win-opensource-4.4.0-mingw.exe
- PyQt-Py2.5-gpl-4.4.2-1.exe
If I go to the python command prompt and do:
from PyQt4 import QtGui
I get a python.exe - Entry Point Not Found pop-up.
The procedure entry point _Z5qFreePv could not be located in the dynamic library QtCore4.dll
Has anyone been successful installing and using PyQt 4.4.2?
Re: Problem with PyQt 4.4.2 and Qt 4.4.0
Nvm, I've figured it out, just make sure C:\Qt\4.4.x\bin is the first item under the PATH env var, for example:
PATH=C:\Qt\4.4.2\bin;%other_vars%