module 'pyqtgraph' has no attribute 'GLViewWidget'
时间: 2023-11-18 16:05:15 浏览: 185
Python 从attribute到property详解
出现"module 'pyqtgraph' has no attribute 'GLViewWidget'"的错误通常是因为pyqtgraph库版本过低或者未正确安装。解决方法如下:
1. 确认已正确安装pyqtgraph库,可以使用以下命令进行安装:
```shell
pip install pyqtgraph
```
2. 如果已经安装了pyqtgraph库,可以尝试升级到最新版本:
```shell
pip install --upgrade pyqtgraph
```
3. 如果升级后仍然出现错误,可以尝试使用以下代码进行导入:
```python
from pyqtgraph.opengl import GLViewWidget
```
阅读全文