刚才的程序出现以下错误怎么解决:AttributeError: module 'pyqtgraph' has no attribute 'Short'
时间: 2023-09-20 21:11:16 浏览: 111
问题解决:AttributeError: module ‘paddle.fluid’ has no attribute ‘EndStepEvent’
5星 · 资源好评率100%
这个错误通常是因为您使用了 pyqtgraph 的版本不兼容。可以尝试使用以下命令升级 pyqtgraph:
```
pip install --upgrade pyqtgraph
```
如果仍然出现相同的错误,请尝试卸载并重新安装 pyqtgraph:
```
pip uninstall pyqtgraph
pip install pyqtgraph
```
另外,请确保您的代码正确导入了 pyqtgraph:
```
import pyqtgraph as pg
```
阅读全文