'Why is my pyautogui not working in Spyder?
I am attempting to make a clicker with pyautogui, and I DID do the pip download. I tried redownloading it but it says "requirements already satisfied" and that I already have it.
When I run this code:
import pyautogui
import time
def click():
time.sleep(0.1)
pyautogui.click()
This is the console output:
ModuleNotFoundError: No module named 'pyautogui'
Now this could be an incredibly stupid mistake on my end... but I cannot figure out for the life of me why this wouldn't work.
In case it is relevant, I am running this on Spyder and as far as I can tell nobody else has issues with this module on Spyder.
Any help would be appreciated, thanks!!!
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
