ERROR: uhd_modes.py has been deprecated. The new application name is
modes_rx.
After i ran this:
modes_rx -d
And got this:
Traceback (most recent call last):
File “/usr/local/bin/modes_rx”, line 25, in
from gnuradio import gr, gru, optfir, eng_notation, blks2
ImportError: No module named gnuradio
BTW Gnuradio is installed, and is running fine with gqrx.
Traceback (most recent call last):
File “/usr/local/bin/modes_rx”, line 25, in
from gnuradio import gr, gru, optfir, eng_notation, blks2
ImportError: No module named gnuradio
from gnuradio import gr, gru, optfir, eng_notation, blks2 <----Line25
It is failing because Python can’t find the gnuradio module. gqrx is
working because it’s a C++ application and so doesn’t depend on the
Gnuradio Python module being installed.
What OS are you running (Ubuntu, Fedora, etc.), and what process did you
follow to install Gnuradio?
from gnuradio import gr, gru, optfir, eng_notation, blks2
Here I have marked the line 25. Is it something from here hat cannot be
from string import split, join
import air_modes
import gnuradio.gr.gr_threading as _threading
import csv
from air_modes.exceptions import *
Erik
Erik,
What version of GNU Radio are you using?
You can also easily test this by hand. Just open ipython (or just
python)
and start importing by hand:
from gnuradio import gr
from gnuradio import gru
…
Figure out which one is actually failing for you.
Tom
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.