Skip to content

Instantly share code, notes, and snippets.

@adamrofer
Last active December 22, 2015 08:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamrofer/6443271 to your computer and use it in GitHub Desktop.
Save adamrofer/6443271 to your computer and use it in GitHub Desktop.
Install gnuradio on Debian easy
#!/bin/sh
apt-get install cmake
git clone http://git.gnuradio.org/git/gnuradio.git
wget https://pypi.python.org/packages/source/C/Cheetah/Cheetah-2.4.4.tar.gz
tar xvf Cheetah-2.4.4.tar.gz
cd Cheetah-2.4.4
./setup.py install
cd ..
wget -o boost_1_50_0.tar.gz -L http://downloads.sourceforge.net/project/boost/boost/1.50.0/boost_1_50_0.tar.gz
tar xvf boost_1_50_0.tar.gz
cd boost_1_50_0
./boostrap.sh
./b2 install
cd ..
cd gnuradio
mkdir build
cd build
cmake ../ -DBOOST_ROOT=../../boost_1_50_0
make && make test
sudo make install
@adamrofer
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment