I'm trying to install gnuradio from this repo, using homebrew. I'm on OSX 10.10.2.
The install keeps failing and saying that my sip and pyqt modules ahave mismatched API versions.
I've done some searching and most things seem to indicate that I should remove sip as well as pyqt, then install sip, and build pyqt against that.
I've tried this approach several times using brew uninstall sip
and brew uninstall pyqt
then reinstalling them and it doesn't seem to work.
==> python setup.py install --prefix=/usr/local/Cellar/gnuradio/HEAD/libexec
File "/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/multiprocessing/pool.py", line 251, in map
return self.map_async(func, iterable, chunksize).get()
File "/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/multiprocessing/pool.py", line 558, in get
raise self._value
RuntimeError: the sip module implements API v11.0 but the PyQt4.QtCore module requires API v11.1
Thanks for any suggestions!