我从源代码安装了gnuradio(3.7.9.2),这是可以的,并从源代码安装了rtl-sdr和gr-osmosdr。是可以的。当我为gr-osmosdr运行cmake ../时,它的输出如下所示:
-- ######################################################
-- # Gnuradio enabled components
-- ######################################################
-- * Python support
-- * Osmocom IQ Imbalance Correction
-- * FUNcube Dongle Pro+
-- * IQ File Source & Sink
-- * Osmocom RTLSDR
-- * RTLSDR TCP Client
-- * Ettus USRP Devices
-- * RFSPACE Receivers
-- * Red Pitaya SDR
--
-- ######################################################
-- # Gnuradio disabled components
-- ######################################################
-- * sysmocom OsmoSDR
-- * FUNcube Dongle
-- * Osmocom MiriSDR
-- * HackRF & rad1o Badge
-- * nuand bladeRF
-- * AIRSPY Receiver
-- * SoapySDR support
--
-- Building for version: v0.1.4-72-g164a09fc / 0.1.5git
-- Using install prefix: /usr/local
-- Configuring done
-- Generating done
-- Build files have been written to: /home/wrsadmin/gr-osmosdr/builddir我负责这些:
make
sudo make install一切都很好。当我在CLI中运行gnuradio-companion时,它会输出:
Warning: restarting the docstring loader (crashed while loading 'osmosdr_sink')
Warning: restarting the docstring loader (crashed while loading 'osmosdr_source')
Warning: restarting the docstring loader (crashed while loading 'rtlsdr_source')当我将RTL源拖到流程图中时,它会输出:
Segmentation fault (core dumped)然后离开。
,为什么gr-osmosdr破坏了gnuradio同伴?
发布于 2016-05-25 05:37:03
谢谢,马库斯,我很喜欢git reset --hard b7da9af4f229a213a225318656734e22dc068b02给我的gnuradio,提交人说“最后完成3.7.9.2版本的发行说明”
发布于 2016-06-30 04:45:59
我有这个问题,因为我几个小时前更新了。我发现,虽然没有解决,但我的OOM块安装了python3.5,但是gnuradio不能加载它们,因为它运行在python2.7下(即“python2”的符号链接)。
dennisg@Tori:~/gr-acars-pen/lib$ python2.7 Python 2.7.11+ (缺省值,2016年4月17日,14:00:29) GCC 5.3.1在linux2类型的“帮助”、“版权”、“信用”或“许可”上获得更多信息。
进口acars分割故障(核心倾弃)
dennisg@Tori-Radio:~/gr-acars-pen/lib$ python3.5PythonPython 3.5.1+ (缺省值,2016年3月30日,22:46:26) GCC 5.3.1在linux“帮助”、“版权”、“信用”或“许可”上获得更多信息。
导入acars跟踪(最近一次调用):文件"",第1行,文件"/usr/local/lib/python2.7/dist-packages/acars/init.py",第34行,从IntruderPy导入IntruderPy ImportError:没有名为'IntruderPy‘的模块
https://stackoverflow.com/questions/37412176
复制相似问题