install.sh

This commit is contained in:
Max 2017-12-22 16:52:30 -05:00
parent ce129911bc
commit 5edfc1c463
1 changed files with 14 additions and 1 deletions

View File

@ -12,7 +12,7 @@ fi
sudo apt-get update sudo apt-get update
sudo apt-get build-dep gnuradio sudo apt-get build-dep gnuradio
sudo apt-get install gnuradio gnuradio-dev gr-osmosdr librtlsdr-dev libuhd-dev libhackrf-dev libitpp-dev libpcap-dev git sudo apt-get install gnuradio gnuradio-dev gr-osmosdr librtlsdr-dev libuhd-dev libhackrf-dev libitpp-dev libpcap-dev cmake git swig
mkdir build mkdir build
cd build cd build
@ -20,3 +20,16 @@ cmake ../
make make
sudo make install sudo make install
sudo ldconfig sudo ldconfig
echo ======
echo ====== NOTICE
echo ======
echo ====== The gnuplot package is not installed by default here,
echo ====== as its installation requires numerous prerequisite packages
echo ====== that you may not want to install.
echo ======
echo ====== In order to do plotting in rx.py using the \-P option
echo ====== you must install gnuplot, e.g., manually as follows:
echo ======
echo ====== sudo apt-get install gnuplot-x11
echo ======