
April 30th, 2003, 10:06 PM
|
|
Contributing User
|
|
Join Date: Aug 2002
Location: Australia
Posts: 33
Time spent in forums: 26 m 53 sec
Reputation Power: 11
|
|
|
libsip error
hi
i found this little script on a site that is ment to just show a window
PHP Code:
#!/usr/bin/env python
import sys
from qt import *
from kdecore import *
from kdeui import *
a=KApplication(sys.argv)
w=QWidget()
a.setMainWidget(w)
a.setTopWidget(w)
w.resize(200,100)
w.show()
a.exec_loop()
and when i9 try and run it i get this error
[root@nexe1 python]# python helloworld.py
Traceback (most recent call last):
File "helloworld.py", line 3, in ?
from qt import *
File "/usr/lib/python2.2/site-packages/qt.py", line 35, in ?
import libsip
ImportError: No module named libsip
[root@nexe1 python]#
i have installed libsip but i get the same error
|