System: Win 7 professional 64-bit

I've tried both 32-bit and 64-bit configs of PyQt5 / Python.

On my other laptop which is now broken and can't be used I had a working environment and all it took to get it working was to run the windows binaries of pyqt5 and python, and it installed fine and worked fine. Now I'm getting these errors:

Qt Code:
  1. c:\MyProjects\LightShowApp>python main.py
  2. Traceback (most recent call last):
  3. File "main.py", line 3, in <module>
  4. from PyQt5.QtWidgets import QApplication
  5. ImportError: DLL load failed: The specified module could not be found.
  6.  
  7. c:\MyProjects\LightShowApp> python
  8. Python 3.4.3 (v3.4.3:9b73f1c3e601, Feb 24 2015, 22:43:06) [MSC v.1600 32 bit (In
  9. tel)] on win32
  10. Type "help", "copyright", "credits" or "license" for more information.
  11. >>> import PyQt5.Qt
  12. >>> import PyQt5.QtWidgets
  13. Traceback (most recent call last):
  14. File "<stdin>", line 1, in <module>
  15. ImportError: DLL load failed: The specified module could not be found.
  16. >>> import PyQt5.QtGui
  17. Traceback (most recent call last):
  18. File "<stdin>", line 1, in <module>
  19. ImportError: DLL load failed: The specified module could not be found.
  20. >>> import PyQt5.QtCore
  21. Traceback (most recent call last):
  22. File "<stdin>", line 1, in <module>
  23. ImportError: DLL load failed: The specified module could not be found.
  24. >>>
To copy to clipboard, switch view to plain text mode