1

gnuradio 网站上的说明说我可以通过调用“apt-get install gnuradio”来安装 gnuradio。但我收到以下错误:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package gnuradio

我也试过'sudo apt-get install gnuradio'。没运气。

我的系统是 ubuntu 12.04。

4

1 回答 1

5

添加 Ettus 存储库

bash -c 'echo "deb http://files.ettus.com/binaries/uhd_stable/repo/uhd/ubuntu/`lsb_release -cs` `lsb_release -cs` main" > /etc/apt/sources.list.d/ettus.list'
bash -c 'echo "deb http://files.ettus.com/binaries/uhd_stable/repo/gnuradio/ubuntu/`lsb_release -cs` `lsb_release -cs` main" >> /etc/apt/sources.list.d/ettus.list'

apt-get update
apt-get install -t `lsb_release -cs` uhd gnuradio
于 2013-11-18T06:30:34.417 回答