orbital
orbital

Reputation: 11

PyAutoGUI unable to import pyscreeze due to Pillow compatibility issue

PyAutoGUI unable to import pyscreeze due to Pillow compatibility issue. I attempted updating pyscreeze and pyautogui, both did nothing.

Error:

_couldNotImportPyScreeze
raise PyAutoGUIException(
pyautogui.PyAutoGUIException: PyAutoGUI was unable to import pyscreeze. (This is likely because you're running a version of Python that Pillow (which pyscreeze depends on) doesn't support currently.) Please install this module to enable the function you tried to call.

I attempted updating pyscreeze and pyautogui, both did nothing.

Upvotes: 1

Views: 1242

Answers (1)

Konrad Buzak
Konrad Buzak

Reputation: 1

Simple: uninstall pyscreeze and reinstall it

pip3/pip uninstall pyscreeze
pip3/pip install pyscreeze

to be ensure do it the same with "pyautogui"

Upvotes: 0

Related Questions