up vote 10 down vote favorite
1
share [g+] share [fb]

I've been trying to install PyQt 4.7 on Vista, but I am getting an ImportError when I try to do: from PyQt4 import QtCore, QtGui.

ImportError: DLL load failed: The specified module could not be found.

I've checked my System Path, and C:\Python31\Lib\site-packages\PyQt4\bin is on there.

I can't run any of the examples, but the Designer, Assistant and Linguist run fine.

I am using ActivePython 3.1, if that makes any difference. And I haven't had any previous version of PyQt installed.


Edit:

I've copied the QtCore4 and GtGui4 dlls to C:\Python31\Lib\site-packages\PyQt4. That fixes some of the examples, but I still can't use the example browser.

link|improve this question

I don't think PyQt4 was installed properly... try reinstalling (see my updated answer below) – jcoon Jan 26 '10 at 18:11
4  
Downvoters: Please give me a reason, so I can learn from that. – Reshure Jan 26 '10 at 18:35
For DLL errors like this, you can use Microsoft's Process Monitor (technet.microsoft.com/en-us/sysinternals/bb896645) to see exactly which DLLs are being searched for, where they were searched for, and whether each search failed/succeeded. – Luke May 15 '11 at 15:40
feedback

3 Answers

up vote 4 down vote accepted

Are you sure there is a \bin directory for your version of PyQt? I am running PyQt 4.4, and all my binaries are right in:

C:\Python31\Lib\site-packages\PyQt4

Which is what I have my path pointing too. It sounds like PyQt4 was installed improperly... did you run this?

python setup.py install

There shouldn't be a bin there...

link|improve this answer
The designer and all dlls are in the bin directory. – Reshure Jan 26 '10 at 17:28
No, I ran the binary installer. – Reshure Jan 26 '10 at 18:32
3  
It works now, after I copied all the files of the bin directory and changed my path. – Reshure Jan 26 '10 at 18:38
feedback

Just wanted to chime in that I had the same problem on a WinXP install of:

  • python 2.7
  • Qt 4.7.1 (10.05)
  • PyQt 4.8.1

I used the windows installer version of all 3 of those items.

Copying the contents of the C:\Python27\Lib\site-packages\PyQt4\bin folder up to the main PyQt folder (C:\Python27\Lib\site-packages\PyQt4) stopped the 'dll not found' errors that python was throwing.

link|improve this answer
feedback

Also chiming in. I installed both python 2.6 and PyQt 4.8.3 on a Windows 7 machine using the windows installers (I did NOT run 'python setup.py install').

I tried to run spyder (which requires PyQt 4.4 or greater) and failed because it couldn't find the PyQt .dlls. I copied all the .dlls from the \Lib\site-packages\PyQt4\bin folder to the \Lib\site-packages\PyQt4 folder, and spyder launches just fine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.