I am trying to switch from PySide to PyQt.
The following code seemed to work in PySide:
class FramedViewedTextGlyph(CompositeGlyph, ViewSizeable, Proxiable,
QGraphicsItemGroup): # no class inherits QObject
def __init__(self):
super(FramedViewedTextGlyph, self).__init__() # init group nec
pwuertz wrote
> The include path configure.py wrote to the .pro files was
> /usr/local/include/python2.7, whereas my python headers are in
> /usr/local/python2.7.
Sorry, typo. I meant that my real include path is /usr/include/python2.7
$ python-config --cflags
-I/usr/include/python2.7 -I/usr/incl
On 10 September 2013 17:32, pwuertz wrote:
> Hi,
>
> I just tried to compile PyQt5 on my Ubuntu 13.04 system. After successfully
> running configure.py, the compiler immediately stopped due to "Python.h" not
> being found. The include path configure.py wrote to the .pro files was
> /usr/local/incl