I am following this tutorial http://lynxline.com/superhybrids-part-2-now-qt-pyside/ I am getting the following output when running build.sh:

Fatal error: line=3, column=62, message=Failed to parse: 'typesystem_core.xml'

Cannot parse file: ../data/typesystem.xmlWARNING: Failure to find: pyhybrid/pyhybrid_module_wrapper.cpp
WARNING: Failure to find: pyhybrid/mainwindow_wrapper.cpp

In build.sh the following directories are listed:

QTGUI_INC=/Library/Frameworks/QtGui.framework/Versions/4/Headers
QTCORE_INC=/Library/Frameworks/QtCore.framework/Versions/4/Headers
QTTYPESYSTEM=/usr/local/share/PySide/typesystems 

but I do not have these directories. Pyside, Qt, and Python are instaled. Where can I find typesystems, QtGui.framework/Versions/4/Headers/QtCore.framework/Versions/4/Headers?

link|improve this question
feedback

1 Answer

I am not sure what OS you are using , but assuming you are using Linux (Ubuntu), the include headers should be installed (assuing Pyside and Qt were installed using the APT package manager) under

QTGUI_INC=/usr/include/qt4/QtGui
QTCORE_INC=/usr/include/qt4/QtGui

or if done from source:

QTGUI_INC=/usr/local/include/qt4/QtGui
QTCORE_INC=/usr/local/include/qt4/QtGui

As for the QTTYPESYSTEM directory, you need to install the libpyside-dev package

link|improve this answer
Sanks,That exactly what I need. But I have new problem. In build.sh No C++ classes found! Cyclic dependency found! Graph can be found at /tmp/qt_temp.T15161 Done, 860 warnings (0 known issues) WARNING: Failure to find: pyhybrid/pyhybrid_module_wrapper.cpp WARNING: Failure to find: pyhybrid/mainwindow_wrapper.cpp I dont think it is normal "860 warnings".Same as type 'QPyTextObject' is specified in typesystem, but not defined. This could potentially lead to compilation errors – user1113159 Dec 23 '11 at 23:16
feedback

Your Answer

 
or
required, but never shown

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