nineties
nineties

Reputation: 433

Unable to locate package gnuradio, ubuntu 12.04

The instruction on the gnuradio website says I can install gnuradio just by call 'apt-get install gnuradio.' But I get the following error:

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

I also tried 'sudo apt-get install gnuradio'. no luck.

My system is ubuntu 12.04.

Upvotes: 1

Views: 9574

Answers (1)

Add Ettus repository

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

Upvotes: 5

Related Questions