Can't find a library to work with usrp x310 in python

83 views Asked by At

I tried to install uhd and pyuhd but they can't be found, next I tried to install pysdr, it worked but I can't import that to my project. Does someone know how to work with the usrp?

Notice that I have already installed uhd and Python 3.8.5 on my computer.

When running pip install pyuhd/uhd I have got this error:

ERROR: Could not find a version that satisfies the requirement pyuhd/uhd (from versions: none)
ERROR: No matching distribution found for pyuhd/uhd

When trying to import pysdr I get this error:

Traceback (most recent call last):
  File "c:\Users\Administrator\Desktop\sdr\test.py", line 1, in <module>
    import pysdr
  File "C:\Users\Administrator\AppData\Local\Programs\Python\Python38\lib\site-packages\pysdr\__init__.py", line 2, in <module>
    from pysdr.gui import base_plot
  File "C:\Users\Administrator\AppData\Local\Programs\Python\Python38\lib\site-packages\pysdr\gui.py", line 1, in <module>     
    from bokeh.plotting import Figure
ModuleNotFoundError: No module named 'bokeh'
0

There are 0 answers