I can\'t install python module called \"pyautogui\" on windows 10 with python version 3.8
CMD:
C:\\Users\\Миша>pip install pyautogui
Collect
I found the solution:
rollback pip to an older version:
python -m pip install pip==18.1
install desired module:
pip install pyautogui
update pip:
python -m pip install --upgrade pip
P.S. this solution works for other modules too.
From the official documentation, it is mentioned to use "pip install PyAutoGUI" (follow the proper casing). I used the same and is working for me.