Created
February 27, 2015 16:28
-
-
Save floehopper/d5d4ee1d15fc0b7bb128 to your computer and use it in GitHub Desktop.
Installing GQRX on Mac OSX Yosemite v10.10.2
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
# Based on https://github.com/metacollin/homebrew-gnuradio#homebrew-gnuradio and https://github.com/chleggett/homebrew-gqrx#install | |
$ brew update | |
$ brew upgrade # may be unnecessary | |
$ brew tap metacollin/gnuradio | |
$ brew install gnuradio # took 55 mins on my laptop & installed python via homebrew | |
$ brew install librtlsdr --HEAD # this installed b4c4e723f3656954f160b3f8df4e8804e4a46acd for me | |
$ brew tap chleggett/gqrx | |
$ brew tap chleggett/gr-osmosdr | |
$ pip install cheetah | |
$ brew install gqrx | |
$ brew linkapps gqrx | |
$ open /Applications/Gqrx.app/Contents/MacOS/Gqrx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was running into compile issues with gnuradio on El Capitan 10.11.2 with cmake 3.4.1. [get_filename_component called with incorrect number of arguments]
Downgrading cmake to 3.3.2 allowed gnuradio to compile [https://github.com/Homebrew/legacy-homebrew/issues/46000]:
Also there is no need to use brew tap metacollin/gnuradio anymore, as it's now in the homebrew repo. [noted via https://github.com/chleggett/homebrew-gqrx]