Anyone having problems with pyQT working in Nuke 6.3v1 on Windows?  I have
it working fine in 6.1v1 and 6.2v4.  6.2v4 is the same version of python
(as 6.3v1) and both are 64bit.  Something internally in Nuke must have
changed.

6.2v4 .....
from PyQt4 import QtGui, QtCore
# Result:

print sys.version_info
print  platform.architecture()
# Result:
     (2, 6, 5, 'final', 0)
     ('64bit', 'WindowsPE')

6.3v1 .....
from PyQt4 import QtGui, QtCore
# Result:
     Traceback (most recent call last):
       File "<string>", line 1, in <module>
     ImportError: DLL load failed: The specified procedure could not be
found.

print sys.version_info
print  platform.architecture()
# Result:
     (2, 6, 5, 'final', 0)
     ('64bit', 'WindowsPE')

Thoughts?

cheers
Greg Wieder

_______________________________________________
Nuke-python mailing list
[email protected], http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-python

Reply via email to