Forked from Mohitsharma44/gist:8d21bbf8efe3bf161b16353e09e99b82
Created
August 26, 2021 11:38
-
-
Save praisegeek/265ddb05782756c8c7246bcdc82457f6 to your computer and use it in GitHub Desktop.
Installing gnuradio, osmosdr and hackrf on mac using mac ports
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Unfortunately this only works with macports for now. I have installed homebrew and macports on my mac | |
# and use macports explicitly for gnuradio stuff and homebrew as my default package manager. So far | |
# my system is not broken. I'm considering it as a good sign :p | |
Steps: | |
- Install MacPorts (if you havent) following the instructions from here: https://guide.macports.org/#installing | |
- Install python using Homebrew: brew install python | |
- Install gnuradio and its dependencies: sudo port install gnuradio +grc +swig +wxgui +qtgui | |
(this will take quite sometime) | |
- Install osmosdr: sudo port install gr-osmosdr | |
(this will also install hackrf, bladerf, rtl-sdr etc) | |
- If your mac has good graphics: sudo port install gr-fosphor | |
Thats it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment