Skip to content Skip to sidebar Skip to footer

Unable To Install Pyautogui

I'm trying to install Pyautogui on ubuntu 18.04, but I keep receiving the following error message: $pip3 install pyautogui Collecting pyautogui Using cached https://files.python

Solution 1:

PyScreeze maintainer here. This is caused by a packaging error, which has been fixed in 0.1.18. It should work now if you install pyautogui, though you may have to delete the pip cache on your machine first.

Solution 2:

The new release (v0.1.17) of pyscreeze fails to install as a dependency of pyautogui.

As a workaround try to install first the last working version of pyscreeze and after this pyautogui:

pip install pyscreeze<=0.1.14
pip install PyAutoGUI

I already created a new ticket for this issue https://github.com/asweigart/pyscreeze/issues/37

Post a Comment for "Unable To Install Pyautogui"