我在Windows 7上使用Python 2.7。我使用pycharm和IDLE。我正在尝试pyautogui一些自动鼠标移动,但该程序返回puautogui没有定义。我在网上看到pyautogui在Windows中不需要任何额外的包。
我在IDLE中键入了导入pyautogui,但它出现了错误。你能帮忙吗?
Python 2.7.10 (default, May 23 2015, 09:40:32) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> import pyautogui
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import pyautogui
ImportError: No module named pyautogui
>>>
答案 0 :(得分:0)
要安装PyAutoGUI,请从PyPI和依赖项安装pyautogui软件包。
在Windows上,这是:
C:Python34pip.exe install pyautogui
答案 1 :(得分:-1)
据说解释器找不到 pyautogui...你确定你安装了它....
如果没有..... 第一类 pip 卸载 PyautoGUI 然后 请在 CMD 或 Powershell 中输入 pip install PyautoGUI
欲了解更多信息,请访问: https://pypi.org/project/PyAutoGUI/