AttributeError: module 'pyautogui' has no attribute 'onMove'
时间: 2023-11-20 15:59:13 浏览: 102
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为你正在尝试使用模块中不存在的属性或方法。在这种情况下,'pyautogui'模块中没有'onMove'属性。可能是你打错了属性名或者你的pyautogui版本太低,不支持该属性。你可以通过检查pyautogui文档或更新pyautogui版本来解决这个问题。
以下是更新pyautogui版本的步骤:
```shell
pip install --upgrade pyautogui
```
阅读全文