import error for pyautogui

前端 未结 5 1956
囚心锁ツ
囚心锁ツ 2021-01-04 08:48

I installed the pyautogui module and dependencies via pip-3.2 on my raspi correctly, However when I am trying to do

import pyautogui

I am g

5条回答
  •  独厮守ぢ
    2021-01-04 09:10

    Search in C:\Python37-32\Lib\site-packages (Where-ever you have installed it). Check if you have pyautogui directory.

    If YES then there exists a configuration issue with pycharm or IDLE.

    If NO then

    • Open Command Prompt
    • cd C:\Python37-32\Scripts
    • pip install pillow
    • pip install pyautogui

    Check for Successfully installed response.

    HAPPY CODING! :)

提交回复
热议问题