Can anyone verify?
$ rpm -qa|grep Py PyQt4-4.4.4-1.fc10.i386 PyKDE4-4.1.96-4.fc10.i386
The user interface compliers (pyuic.py,pykdeuic4.py) don't seem to be in my path? pykdeuic4.py isn't marked executable.
$ ls -la /usr/lib/python2.5/site-packages/PyQt4/uic/pyuic.py -rwxr-xr-x 1 root root 3423 2008-12-30 01:27 /usr/lib/python2.5/site-packages/PyQt4/uic/pyuic.py $ ls -la /usr/share/kde4/apps/pykde4/pykdeuic4.py -rw-r--r-- 1 root root 3962 2008-01-04 23:52 /usr/share/kde4/apps/pykde4/pykdeuic4.py
F9 is the same with 4.1.x Dropping a couple of links and a chmod in ~/bin for a workaround.
...dex
dexter wrote:
Can anyone verify?
$ rpm -qa|grep Py PyQt4-4.4.4-1.fc10.i386 PyKDE4-4.1.96-4.fc10.i386
The user interface compliers (pyuic.py,pykdeuic4.py) don't seem to be in my path?
$ rpm -q -f /usr/bin/pyuic4 PyQt4-devel-4.4.4-2.fc10.x86_64
(In short, install PyQt4-devel and/or PyKDE4-devel)
-- Rex
Rex Dieter wrote:
$ rpm -q -f /usr/bin/pyuic4 PyQt4-devel-4.4.4-2.fc10.x86_64
(In short, install PyQt4-devel and/or PyKDE4-devel)
And to elaborate on this, the .py files are the versions for loading at runtime: pyuic allows loading .ui files at runtime by importing the runtime version of pyuic from the Python code.
Kevin Kofler