2017-05-25 98 views
2

我已經安裝了Python 3.4和Pillow。所有其他功能都與pyautogui相關,只有屏幕截圖和其他圖像識別功能不起作用。Pyautogui截圖函數返回AttributeError'模塊'對象沒有屬性

>>> import pyautogui 
>>> pyautogui.locateOnScreen('chrome.PNG') 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
AttributeError: 'module' object has no attribute 'locateOnScreen' 

同樣的結果也顯示屏幕捕捉功能。

我看了下面的鏈接,但結果非Windows 7操作系統爲我工作 Python: 'pyautogui' has no attribute 'screenshot' (Windows)

回答

2

嘗試通過提它,它在PIP下載確切版本。

pip install PyAutoGUI-0.9.35 

pip install pyautogui==0.9.35 

爲我工作。

0

如果有帶枕頭模塊的問題,首先在命令行通過安裝方便安裝枕頭模型

easy_install Pillow 

然後在命令行通過

pip install PyAutoGUI-0.9.35 

所有安裝PyAutoGui爲管理員。

相關問題