0

インストールしようとしてPyAutoGUIいますが、試行するたびにエラーメッセージが表示されます

C:\WINDOWS\system32>C:\Users\nicho\AppData\Local\Programs\Python\Python35-32\Scripts\pip install PyAutoGUI
Collecting PyAutoGUI
  Using cached PyAutoGUI-0.9.33.zip
Collecting pymsgbox (from PyAutoGUI)
  Using cached PyMsgBox-1.0.3.zip
Collecting PyTweening>=1.0.1 (from PyAutoGUI)
  Using cached PyTweening-1.0.3.zip
Collecting Pillow (from PyAutoGUI)
  Using cached Pillow-3.1.1-cp35-none-win32.whl
Collecting pyscreeze (from PyAutoGUI)
  Using cached PyScreeze-0.1.8.zip
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\nicho\AppData\Local\Temp\pip-build-jt08_ns2\pyscreeze\setup.py", line 6, in <module>
        version=__import__('pyscreeze').__version__,
      File "c:\users\nicho\appdata\local\temp\pip-build-jt08_ns2\pyscreeze\pyscreeze\__init__.py", line 21, in <module>
        from PIL import Image
    ImportError: No module named 'PIL'

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\nicho\AppData\Local\Temp\pip-build-jt08_ns2\pyscreeze

誰でも私を助けることができますか?

4

2 に答える 2

0

Python Image Library(PIL)次のコマンドを使用して、 をインストールする必要があります。

sudo pip install PIL --allow-external PIL --allow-unverified PIL
于 2016-02-21T19:51:48.170 に答える
0

Python パッケージの仮想環境を確認してください。たとえば、pycharm では非常にユーザー フレンドリーであり、ハード ドライブの容量を使い果たす前にパッケージをテストできます。

于 2016-02-21T20:34:29.917 に答える