Advertisement
Guest User

GNURadio Install

a guest
Nov 5th, 2013
704
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. GNURadio
  2.  
  3. apt-get install python-opengl python-matplotlib python-scipy python-lxml automake build-essential libboost-all-dev libusb-1.0-0-dev python-cheetah doxygen python-docutils git cmake libcppunit-dev fftw3-dev libfftw3-dev libgsl0-dev swig python2.7 libsdl1.2-dev python-wxgtk2.8 libqt4-dev libqwt-dev pyqt4-dev-tools python-qwt5-qt4 python-numpy python-setuptools python-gtk2-dev liborc-0.4-dev python-sphinx
  4.  
  5. cd ~/
  6. mkdir SDR
  7. cd SDR
  8.  
  9. git clone git://github.com/gnuradio/gnuradio.git
  10. cd gnuradio
  11. mkdir build
  12. cd build
  13. cmake ../
  14. make
  15. make install
  16. ldconfig
  17. cd ../../
  18.  
  19. git clone git://git.osmocom.org/rtl-sdr.git
  20. cd rtl-sdr/
  21. mkdir build
  22. cd build
  23. cmake ../ -DINSTALL_UDEV_RULES=ON
  24. make
  25. make install
  26. ldconfig
  27. cd ../../
  28.  
  29. git clone git://git.osmocom.org/gr-osmosdr
  30. cd gr-osmosdr/
  31. mkdir build
  32. cd build/
  33. cmake ../ -Wno-dev
  34. make
  35. make install
  36. ldconfig
  37. cd ../../
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement