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