Issue
my code:
import pyautogui
from time import sleep
x, y = pyautogui.locateOnScreen("slorixsh.png", confidence=0.5)
error:
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
x, y = pyautogui.locateOnScreen("slorixsh.png", confidence=0.5)
File "C:\Users\mrnug\AppData\Local\Programs\Python\Python310\lib\site-packages\pyautogui\__init__.py", line 231, in _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.
line 231 in that error:
raise 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."
)
somehow it doesnt work i just reinstalled and updated that modules:
pyscreeze, opencv, pyautogui, pillow
Solution
Yeah, you can fix it by this
pip install pyscreeze
import pyscreeze
import time
time.sleep(5)
x, y = pyscreeze.locateOnScreen("slorixsh.png", confidence=0.5)
Answered By - Christian Balinda
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.