1

CMD を使用して pyautogui モジュールをインストールしていますが、次のエラーが発生し続けます。

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

を使用pip install pyautoguiしてインストールを開始すると、cmd はエラーが表示される前に次のコードを表示します。

    C:\WINDOWS\system32>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)
  Downloading Pillow-4.0.0-cp36-cp36m-win32.whl (1.3MB)
    100% |████████████████████████████████| 1.3MB 78kB/s
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\ANDBOD~1\AppData\Local\Temp\pip-build-pmc8kstd\pyscreeze\setup.py", line 6, in <module>
        version=__import__('pyscreeze').__version__,
      File "C:\Users\ANBDOD~1\AppData\Local\Temp\pip-build-pmc8kstd\pyscreeze\pyscreeze\__init__.py", line 21, in <module>
        from PIL import Image
    ModuleNotFoundError: No module named 'PIL'

cmd が C:\Users\ANDBOD... ファイル パスを検索していて、Python ファイルが保存されている場所ではないため、エラーが発生していると思います。管理者として cmd を開こうとしましたが、同じエラーが発生しました。

2 週間前にまったく同じプロセスを使用して openpyxl をインストールしましたが、問題はありませんでしたが、どのモジュールをインストールしようとしても同じ問題が発生します。

助けてくれてありがとう!

4

2 に答える 2

0

モジュール PIL がない場合のみ、このエラーが発生します。他のスレッドを確認しながら、PIL をインストールします。

ImportError: PIL という名前のモジュールがありません

于 2017-01-11T22:40:03.640 に答える