You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, i've just built gr-dsd from source but the DSD demodulator is not showing inside shinysdr.
Looking at the source code I've found this snippet:
try:
from dsd import block_ff as dsd_block_ff
_available = True
except ImportError:
_available = False
I think the problem is that shinysdr can't find the dsd python module.
I've manually tried to import this module inside a python script but I got this error:
from dsd import block_ff as dsd_block_ff
Traceback (most recent call last):
File "", line 1, in
File "**/usr/lib/python2.7/dist-packages/**dsd/init.py", line 45, in
from dsd_swig import *
ImportError: No module named dsd_swig
I've also checked the PYTHON_PATH running: python -c "import sys; print '\n'.join(sys.path)"
I'm afraid I don't have any advice for Python SWIG issues — and as you've already figured out, this is a problem with installing gr-dsd and not ShinySDR per se. Sorry!
(But if you figure it out, let me know — I'm thinking of putting together a “troubleshooting” section of the manual.)
Otherwise _dsd_swig.so is built and linked against libpython3.5m.so, leading to the following error on "import dsd": dynamic module does not define init function (init_dsd_swig)
Hi, i've just built gr-dsd from source but the DSD demodulator is not showing inside shinysdr.
Looking at the source code I've found this snippet:
I think the problem is that shinysdr can't find the dsd python module.
I've manually tried to import this module inside a python script but I got this error:
I've also checked the PYTHON_PATH running:
python -c "import sys; print '\n'.join(sys.path)"
and the response is:
Searching for "gr-dsd" in the filesystem:
Any idea?
How can I fix this error?
Thank you =)
The text was updated successfully, but these errors were encountered: