Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/361.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 错误:Raspberry PI3上的双链接列表_Python_Raspberry Pi - Fatal编程技术网

Python 错误:Raspberry PI3上的双链接列表

Python 错误:Raspberry PI3上的双链接列表,python,raspberry-pi,Python,Raspberry Pi,我在raspberry pi3中有一个问题,当我运行grgsm工具时,我出现了这个错误 pi@raspberrypi:~ $ grgsm_scanner linux; GNU C++ version 6.2.0 20161010; Boost_106100; UHD_003.009.005-0-unknown *** Error in `/usr/bin/python2': corrupted double-linked list: 0x00bf9fe0 *** Aborted 有人能帮我

我在raspberry pi3中有一个问题,当我运行grgsm工具时,我出现了这个错误

pi@raspberrypi:~ $ grgsm_scanner
linux; GNU C++ version 6.2.0 20161010; Boost_106100; UHD_003.009.005-0-unknown


*** Error in `/usr/bin/python2': corrupted double-linked list: 0x00bf9fe0 ***
Aborted
有人能帮我吗?
谢谢,

python解释器是用C编写的,此错误是由
glibc
引起的,请参见和


通常这是由于代码中的内存泄漏造成的,但是如果gnuradio是一个非常复杂的代码,那么在安装过程中可能会丢失一些模块。2013年,这导致了一个类似的错误(
osmoSDR
未安装)

我在rpi3(raspbian)上运行gnuradio时收到了相同的错误消息,我发现了这个问题,因此对于子孙后代,我能够通过在我的rpi3上安装使其正常工作,并运行
sudo-apt-install-gnuradio
sudo-apt-install-grgsm\u-scanner
grgsm\u扫描器
(以及一般的gnuradio)现在可以正常启动了。

我遇到了与ubuntu mate完全相同的问题