Skip to content
Josh Blum edited this page May 11, 2016 · 24 revisions

Ubuntu package support

The Pothosware Framework PPA contains deb packages for the Pothos framework and various Pothos toolkits. Soapy SDR and a slew of hardware support drivers are provided by the MyriadRF SDR Drivers PPA.

http://i.imgur.com/m6ihRGz.png

The PPAs support the following Ubuntu releases:

  • Trusty (14.04 LTS)
  • Wily (15.10)
  • Xenial (16.04)

Add the following PPAs to your Ubuntu system based on your needs:

#core framework and toolkits (required)
sudo add-apt-repository -y ppa:pothosware/framework

#support libraries for pothos (required)
sudo add-apt-repository -y ppa:pothosware/support

#supplies spuce, soapysdr, and drivers (required)
sudo add-apt-repository -y ppa:myriadrf/drivers

#needed when using bladerf devices
sudo add-apt-repository -y ppa:bladerf/bladerf

#needed when using usrp devices
sudo add-apt-repository -y ppa:ettusresearch/uhd

#always update after adding PPAs
sudo apt-get update

Install Pothos with GUI tools and all official toolkits:

sudo apt-get install pothos-all

Install Soapy SDR runtime and utility packages:

#soapy sdr runtime and utilities
sudo apt-get install soapysdr

#python language bindings
sudo apt-get install python-soapysdr python-numpy

#using soapy sdr for remote device support?
sudo apt-get install soapysdr-remote soapysdr-server

Install Soapy SDR support drivers for your hardware:

#osmo sdr support:
sudo apt-get install osmo-sdr soapyosmo-osmosdr

#rtl sdr support:
sudo apt-get install rtl-sdr soapysdr-rtlsdr

#blade rf support:
sudo apt-get install bladerf soapy-bladerf

#hack rf support:
sudo apt-get install hackrf soapysdr-hackrf

#usrp support:
sudo apt-get install uhd uhd-soapysdr soapysdr-uhd

#umtrx support:
sudo apt-get install umtrx uhd uhd-soapysdr soapysdr-uhd

#miri SDR support:
sudo apt-get install miri-sdr soapyosmo-mirisdr

#rf space support:
sudo apt-get install soapyosmo-rfspace

#airspy support:
sudo apt-get install airspy soapyosmo-airspy

Open a terminal and run:

#print information about the install
PothosUtil --system-info
SoapySDRUtil --info

#run the design GUI -- there should also be a menu shortcut
PothosGui

Users may wish to build a more recent version of Pothos from source, but still use the PPAs to install various dependencies. Find this information documented in Ubuntu section of the build guide.