-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No module named pyblish_qml #71
Comments
Make sure pyblish_qml is on your PYTHONPATH environment variable, that's the one getting passed to your Python executable (not sys.path, which is only used by Maya). import os
...
os.environ["PYTHONPATH"] += os.pathsep + os.sep.join(pyblish_qml.__file__.rsplit(os.sep)[:-2])
...
pyblish_maya.show() If you know where pyblish_qml is, best to add the path directly instead of the These can also be added to your environment prior to launching Maya. # On Windows
$ set PATH=%PATH%;c:\python27
$ set PYTHONPATH=c:\pythonpath
$ maya Let me know if this works for you. |
This fixes the original issue, though I am receiving a dialog stating "This application failed to start because it could not find or locate the Qt platform plugin "Windows" in "". |
Make sure your PyQt5 installation works with that Python version. |
Thanks. I am getting yet another error though:
I have followed the advice/instructions here but havent been able to resolve the issue. executing:
|
Thanks for sharing what you tried, but which advice did you follow exactly? Installing via It looks like your version of PyQt5 is too old; this should work. |
Using the git install resolves the issue within pyblish_maya, but stops my pyblish_nuke from working.. |
Receiving the error "No module named pyblish_qml" when attempting to exec pyblish_maya.show() under maya 2018.
executing:
result:
The text was updated successfully, but these errors were encountered: