Usrp with gnu issue

hi, I am using airprobe for recording encrypted voice conversation, but
when
i am trying to do so I use to get error, now I am trying to find out
nearby
bst I got this error:
*
sandeep@sandeep-desktop:~$ usrp_fft.py --decim=32 --gain=26 --freq=921M
Traceback (most recent call last):
File “/usr/local/bin/usrp_fft.py”, line 23, in
from gnuradio import gr, gru
File “/usr/lib/python2.6/dist-packages/gnuradio/gr/init.py”, line
27,
in
from gnuradio_swig_python import *
File
“/usr/lib/python2.6/dist-packages/gnuradio/gr/gnuradio_swig_python.py”,
line
6, in
import _gnuradio_swig_python
ImportError:
/usr/lib/python2.6/dist-packages/gnuradio/gr/_gnuradio_swig_python.so:
undefined symbol: _ZN11omni_thread6init_tD1Ev
sandeep@sandeep-desktop:~$
*
please guide me what to do or what i did wrong

On Mon, Jan 04, 2010 at 05:06:08AM +0530, sandeep mishra wrote:

from gnuradio_swig_python import *


Thanks…

From the looks of this, I’m guessing that you’ve installed both the
debian package and one of the tarballs or source from git.

Remove the debian GR package, but leave the rest of the dependencies,
then in the GR source directory,

$ make distclean
$ ./bootstrap && ./configure && make && make check
$ make install (maybe $ sudo make install)

Eric

Hi Eric,
Thank you for your guide, I just performed your specified step, but now
I am
getting the screen with this msg:

"
*The following GNU Radio components have been successfully configured:

config
gruel
omnithread
gnuradio-core
mblock
usrp
usrp2
vrt
gr-usrp
gr-usrp2
gr-msdd6000
gr-audio-alsa
gr-audio-oss
gr-atsc
gr-cvsd-vocoder
gr-gpio
gr-gsm-fr-vocoder
gr-noaa
gr-pager
gr-radar-mono
gr-radio-astronomy
gr-trellis
gr-video-sdl
gr-sounder
gnuradio-examples
docs

You my now run the make command to build these components.


The following components were skipped either because you asked not
to build them or they didn’t pass configuration checks:

gcell
gr-gcell
gr-audio-jack
gr-audio-osx
gr-audio-portaudio
gr-audio-windows
gr-comedi
gr-wxgui
gr-qtgui
gr-utils
grc

These components will not be built.

Configured GNU Radio release 3.3git-579-gf6a77079 for build.*

"
should I perform the make command or I have to install every components,
please reply I am waiting for your green signal

On Tue, Jan 05, 2010 at 01:04:05AM +0530, sandeep mishra wrote:

gnuradio-core
gr-cvsd-vocoder
docs

You my now run the make command to build these components.

This is fine, but if you want any of the GUI’s (and common apps, such
as usrp_fft) you’ll need to install the dependencies for wxpython.

I think you need:

$ apt-get install wx-common python-wxgtk2.8

But take a look at

http://vps.gnuradio.org/redmine/wiki/gnuradio/UbuntuInstall

for the details on Ubuntu.

Eric

On Mon, Jan 04, 2010 at 08:49:35PM +0000, [email protected] wrote:

Hi Eric, the same problem again, don’t know what went wrong, I followed every step as per you

If you’re getting the same message as below, then you have the same
problem and have failed to remove the Ubuntu package, or at some time
in the past you have installed GR into /usr both and /usr/local.

I know this because some of the paths in the backtrace below start
with /usr/local and others start with /usr/lib/python2.6/dist-packages.

Eric

This will install almost everything you need. It seems grc wasn’t
configured. You might want to find out why as GRC is an indispensable
tool
for a gnuradio user.

good luck