Pyscreenshot Is Hanging Python 3.4
I am still pretty new to python. I am on Ubuntu 14.04 and using Python 3.4 in IDLE. I want to take a screenshot and after doing research it seemed like pyscreenshot was a good solu
Solution 1:
You can turn off multiprocessing in pyscreenshot. Like
import pyscreenshot as ImageGrab
im = ImageGrab.grab(childprocess=False)
im.show()
I found the answer on this page. Check that out. https://github.com/ponty/pyscreenshot/issues/38
Post a Comment for "Pyscreenshot Is Hanging Python 3.4"