Drew wrote:
I get this when I run yum list *wx*Installed Packages compat-wxGTK.i386 2.4.2-17.fc4 installed compat-wxGTK-common.i386 2.4.2-17.fc4 installed compat-wxGTK2.i386 2.4.2-17.fc4 installed compat-wxGTK2-gl.i386 2.4.2-17.fc4 installed compat-wxPythonGTK2.i386 2.4.2.4-10.fc4 installed wxGTK.i386 2.6.3-2.6.3.2.2.fc4 installed wxGTK-devel.i386 2.6.3-2.6.3.2.2.fc4 installed wxGTK-gl.i386 2.6.3-2.6.3.2.2.fc4 installed wxPython.i386 2.6.3.2-1.fc4 installed wxPython-devel.i386 2.6.3.2-1.fc4 installed Not sure what all that compat stuff means, any ideas?
Right, the compat- stuff represent older versions of the library. It appears that with both compat-wxPythonGTK2 (the old version) and wxPython (the current version) installed, you end up using the old version for some reason, due to the way Fedora sets up the paths to the two versions.
Can you uninstall the old version, with: yum remove compat-wxPythonGTK2If you have applications installed that are depending on this old version, I'm pretty sure yum will warn you about that before it uninstalls it.
Failing that, I guess you could hand-edit the pykaraoke script and add the lines to force the appropriate path to the current wx, so that it looks like this:
#!/usr/bin/env python import sys sys.path.insert(0,'/usr/lib/python2.4/site-packages/wx-2.6-gtk2-unicode') import pykaraoke pykaraoke.main() David
smime.p7s
Description: S/MIME Cryptographic Signature
------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________ Pykaraoke-discuss mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/pykaraoke-discuss
