2

モジュールでスクリーンショットを撮ろうとしていpyautoguiますが、このエラーが発生し続けます

>>> image = pyautogui.screenshot()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: module 'pyautogui' has no attribute 'screenshot'

Is there something I'm missing? The chapter in Automate the Boring Stuff with Python said that as I'm on Windows, I shouldn't need to download anything other than pyautogui itself for this to work. Anyone know why this might happen? Thanks in advance.

EDIT: I am using Anaconda so I already have Pillow.

4

4 に答える 4

0

Linux では、スクリーンショット機能を使用するには実行する必要がありsudo apt-get install scrotます。

于 2016-08-22T12:51:47.710 に答える
-1

「image = pyautogui.screenshot()」を使用する前に、「import pyautogui」と入力する必要がありました

于 2016-08-22T12:46:35.410 に答える