File "/Users/nick/Documents/antiAfkflorrio/venv/lib/python3.9/site-packages/pyscreeze/init.py", line 527, in _screenshot_osx:
solution:
So you need to click into the reported error file. Replace this code:
if tuple(PILversion) < (6, 2, 1):
with this code:
if tuple(map(int, PILversion.split("."))) < (6, 2, 1):
works for me
File "/Users/nick/Documents/antiAfkflorrio/venv/lib/python3.9/site-packages/pyscreeze/init.py", line 527, in _screenshot_osx: solution: So you need to click into the reported error file. Replace this code:
if tuple(PILversion) < (6, 2, 1): with this code:
if tuple(map(int, PILversion.split("."))) < (6, 2, 1): works for me