aboutsummaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh15
1 files changed, 14 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 042d07e..f52da38 100755
--- a/install.sh
+++ b/install.sh
@@ -12,7 +12,7 @@ fi
sudo apt-get update
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
cd build
@@ -20,3 +20,16 @@ cmake ../
make
sudo make install
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 ======