I am bringing up gnuradio on a new Linux system running Ubuntu 7.10 and
am trying to bootstrap myself up on both Linux and Python.
Everything seems to be working except the graphical interfaces. The
nogui versions of the examples execute fine.
Anything that I try to run that imports one of the gui elements fails
in a similar way (No module named wxgui):
Traceback (most recent call last):
File “./slider.py”, line 29, in
from gnuradio.wxgui import stdgui
ImportError: No module named wxgui
import sys
print sys.path
[’’, ‘/usr/lib/python25.zip’, ‘/usr/lib/python2.5’, ‘/usr/lib/
python2.5/plat-linux2’, ‘/usr/lib/python2.5/lib-tk’, ‘/usr/lib/
python2.5/lib-dynload’, ‘/usr/local/lib/python2.5/site-packages’, ‘/
usr/lib/python2.5/site-packages’, ‘/usr/lib/python2.5/site-packages/
Numeric’, ‘/usr/lib/python2.5/site-packages/gst-0.10’, ‘/var/lib/
python-support/python2.5’, ‘/usr/lib/python2.5/site-packages/gtk-2.0’,
‘/var/lib/python-support/python2.5/gtk-2.0’, ‘/usr/lib/python2.5/site-
packages/wx-2.8-gtk2-unicode’]
The source files all seem to be present in gnuradio/gr-wxgui/src/python
Any suggestions will be appreciated.
Dick…