discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Error No module named 'TheNameOfMyModule' in GRC


From: Vasil Velichkov
Subject: Re: Error No module named 'TheNameOfMyModule' in GRC
Date: Tue, 18 Jan 2022 16:18:07 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.2.0

Hi Michelle,

On 18/01/2022 14.01, Michelle wrote:
> hello,
> 
> I created an OOT module, added a block and made the block available in GRC. 
> Then I installed the module and called ldconfig (as I'm in ubuntu).
> My block appears in GRC but when I insert the block in a graph and execute 
> that graph I get an error *No module named 'TheNameOfMyModule'. *
> 
> Please can you enlighten me on how to fix this issue? I followed the 
> instructions of the wiki https://wiki.gnuradio.org/index.php/OutOfTreeModules

Most probably you need to add /usr/local/lib/python3/dist-packages to 
PYTHONPATH environment variable as this directory is not in the default python 
search paths (sys.path)

Open a new terminal and execute the following

export PYTHONPATH=/usr/local/lib/python3/dist-packages:$PYTHONPATH
gnuradio-companion

to make this change permanent you can add the export line to ~/.profile file 
and then logout/login or reboot. See also 
https://wiki.gnuradio.org/index.php/ModuleNotFoundError

Regards,
Vasil




reply via email to

[Prev in Thread] Current Thread [Next in Thread]