Problem with wx when upgrading to GnuRadio 3.3

Hello,

I recently downloaded and installed gnuradio 3.3 and all of the
dependencies listed on
http://gnuradio.org/redmine/wiki/gnuradio/FedoraInstall. I then
uninstalled 3.3 and reverted to 3.2.2 and now I can’t import wx.

I have fedora 11. Somebody on an Ubuntu forum fixed it by installing
libwxgtk2.8-dev but I cant find that for fedora.

File “./usrp_fft.py”, line 27, in
from gnuradio.wxgui import stdgui2, fftsink2, waterfallsink2,
scopesink2, form, slider
File “/usr/lib64/python2.6/site-packages/gnuradio/wxgui/stdgui2.py”,
line 24, in
import wx
File
“/usr/lib64/python2.6/site-packages/wx-2.8-gtk2-unicode/wx/init.py”,
line 45, in
from wx._core import *
File
“/usr/lib64/python2.6/site-packages/wx-2.8-gtk2-unicode/wx/_core.py”,
line 14793, in
from _gdi import *
File
“/usr/lib64/python2.6/site-packages/wx-2.8-gtk2-unicode/wx/_gdi.py”,
line 4, in
import gdi
ImportError:
/usr/lib64/python2.6/site-packages/wx-2.8-gtk2-unicode/wx/gdi.so:
symbol _ZN18wxGraphicsRenderer16GetCairoRendererEv, version WXU_2.8 not
defined in file libwx_gtk2u_core-2.8.so.0 with link time reference

Any ideas?

Thanks


Scott Johnston
MIT Lincoln Laboratory
244 Wood Street, Lexington, MA 02420-9108
(781) 981-8196
[email protected]

On Wed, Nov 10, 2010 at 12:43 PM, Scott Johnston
[email protected] wrote:

from gnuradio.wxgui import stdgui2, fftsink2, waterfallsink2, scopesink2,
from _gdi import *

Thanks


Scott Johnston
MIT Lincoln Laboratory
244 Wood Street, Lexington, MA 02420-9108
(781) 981-8196
[email protected]

Scott,
My guess is that you uninstalled wxPython at some point in your
process. You should be able to reinstall it with:
yum install wxPython-devel

This should also install wxGTK since it is a requirement.

Tom