AttributeError: module 'pyautogui' has no attribute 'screeninfo'
时间: 2023-11-04 11:00:40 浏览: 186
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是由于 pyautogui 模块中没有 screeninfo 属性引起的。这个错误可能是因为你使用的是较旧的 pyautogui 版本,而该属性在该版本中不存在。解决这个问题的方法是更新 pyautogui 到最新版本。你可以使用以下命令来更新 pyautogui:
```python
pip install --upgrade pyautogui
```
更新完成后,再次运行你的代码应该就不会出现这个错误了。
阅读全文