On 02/06/2017 10:52 AM, Qurat-Ul-Ann Akbar wrote: > Hi, > > I recently installed gnuradio on one of my machines using pyBOMBS and > this is my first time trying pyBOMBS for installation. Whenever I > generate a python file from the GRC flow graph and try to run the python > file, I receive the error "No module named gnuradio". > > I think the python is not able to find gnuradio. How can I fix this?
Start up python in a terminal window and execute: import os pythonpath=os.environ['PYTHONPATH'].split(os.pathsep) print pythonpath Examine the output to see if gnuradio is included. -- Cinaed > _______________________________________________ > Discuss-gnuradio mailing list > [email protected] > https://lists.gnu.org/mailman/listinfo/discuss-gnuradio > _______________________________________________ Discuss-gnuradio mailing list [email protected] https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
