In PyCharm, I\'ve added the Python environment /usr/bin/python. However,
/usr/bin/python
from gnuradio import gr
fails as an unde
As quick n dirty fix, this worked for me: Adding this 2 lines before the problematic import:
import sys sys.path.append('C:\\Python27\\Lib\site-packages')