On Monday December 29 2003 11:40, Toth Balazs wrote: > Let's see my problems: > > 1. The program didn't find sip.h and sipQt.h where they were, > I had to copy them to the *.sip files directory, and there it > worked. (The original dir was /usr/include/python2.3, but the > installer didn't see the files if I gave that dir) > > 2. I had to make a new directory for the qtmod.sip file > (/PyQt-x11-gpl-3.8/sip inside /usr/share/sip), but the > documentation didn't mention that I have to do it, it was my > improvisation. > > 3. It's still not working. > > In your answer please don't forget that I don't have any > programming skill, I just want to run SuperKaramba.
> Traceback (most recent call last): > File "build.py", line 1038, in ? > main (sys.argv) > File "build.py", line 993, in main > dis.setPatches (proPatches, makefilePatches) > File "build/discover.py", line 781, in setPatches > linkPath = "%s -L %s -L%s" % (ld, self.pyqtLib.path, > sitePkgs) AttributeError: 'Discovery' object has no attribute > 'pyqtLib' Change line 781 of build/discover.py to: linkPath = "%s -L %s" % (ld, self.pyQtLib.path, sitePkgs) Note that it should be "pyQt", not "pyqt" - my typo. Jim _______________________________________________ PyKDE mailing list [EMAIL PROTECTED] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde
