Perhaps this could be a silly post but after some tries i gave up on getting pyblish_qml running so i need help from some charitable soul on this. I just want to mention I’m currently using windows and python 2.7 version.
I’d like to go step by step:
1 - I’ve installed pyblish from from windows console (this also brings pyblish_qml package)
C:\Python27\Scripts>pip install pyblish
2 - Then i’ve installed pyqt5 this way.
C:\Python27\Scripts>pip install git+git://github.com/pyqt/python-qt5.git
and tested the installation like mentioned on https://github.com/pyqt/python-qt5 successfully
3 - Set these env vars:
set PYBLISH_QML_PYTHON_EXECUTABLE=c:\python27\python.exe
set PYBLISH_QML_PYQT5=C:\Python27\Lib\site-packages\PyQt5
4 - Tried again just in case pyblish_qml installation
pip install pyblish-qml
and i got as a result:
Requirement already satisfied: pyblish-qml in c:\python27\lib\site-packages (0.7.0)
Requirement already satisfied: pyblish-base>=1.4 in c:\python27\lib\site-packages (from pyblish-qml) (1.4.3)
so go ahead with the “Test out the installation with”
python -m pyblish_qml --demo
and this ends up on this error:
C:\Python27>python -m pyblish_qml --demo
Traceback (most recent call last):
File “C:\Python27\lib\runpy.py”, line 174, in _run_module_as_main
“main”, fname, loader, pkg_name)
File “C:\Python27\lib\runpy.py”, line 72, in run_code
exec code in run_globals
File "C:\Python27\lib\site-packages\pyblish_qml_main.py", line 6, in
from . import app
File “C:\Python27\lib\site-packages\pyblish_qml\app.py”, line 13, in
from . import util, compat, server, control, rpc, settings
File “C:\Python27\lib\site-packages\pyblish_qml\control.py”, line 11, in
from . import util, models, version, settings, rpc
File “C:\Python27\lib\site-packages\pyblish_qml\models.py”, line 94, in
class PropertyType(QtCore.pyqtWrapperType):
AttributeError: ‘module’ object has no attribute ‘pyqtWrapperType’
What am i missing?
Can somebody give me a hand on this?
Thanks in advance