enerating: '/home/firefly/Desktop/df.py' >>> Warning: This flow graph may not have flow control: no audio or RF hardware blocks found. Add a Misc->Throttle block to your flow graph to avoid CPU congestion. Executing: /usr/bin/python3 -u /home/firefly/Desktop/df.py Traceback (most recent call last): File "/home/firefly/Desktop/df.py", line 31, in <module> from gnuradio import qtgui File "/usr/lib/python3/dist-packages/gnuradio/qtgui/__init__.py", line 38, in <module> from .range import Range, RangeWidget File "/usr/lib/python3/dist-packages/gnuradio/qtgui/range.py", line 24, in <module> from PyQt5 import Qt, QtCore, QtWidgets RuntimeError: PyQt5.QtWidgets cannot import type '����' from PyQt5.QtCoreg
时间: 2023-09-24 12:11:50 浏览: 288
这是一个错误提示,似乎是在执行一个Python脚本时出现了错误。具体来说,可能是因为在该脚本中引用了gnuradio.qtgui库中的某个模块,但是这个库的相关依赖没有正确地安装或者版本不匹配所导致的。建议检查一下你的Python环境和库依赖是否正确安装,并且核实一下你的代码中是否有拼写错误或者语法错误。如果问题依然存在,你可以在相关的技术社区或者论坛上发帖求助,寻求更具体的帮助。
阅读全文