0

I need a module that can control the keyboard, mouse movement and clicks . I tried to use PyUserInput and PyAutoGUI but none work for python 3.5. Can someone help ?

9
  • What OS are you using? GUI automation modules often are OS specific. That being said, PyAutoGUI works with Windows, Linux and mac OS. Commented Jan 19, 2017 at 9:12
  • @AlexFung I am using Windows 8 at the moment. Commented Jan 19, 2017 at 9:13
  • What exactly does "none work for Python 3.5" mean? Can you elaborate a little bit? As Alex Fung said, at least pyautogui should work. Commented Jan 19, 2017 at 9:15
  • @AlexFunt I tried installing PyAutoGUI using the "pip install pyautogui" in the console. But i got an error message informing me that i don't have the PIL module and as much as I can see there is no PIL module that works with python 3... Commented Jan 19, 2017 at 9:17
  • 1
    Have you tried pip install pillow? PIL is deprecated and pillow is the successor. However, this should actually be installed together with pyautogui... Commented Jan 19, 2017 at 9:20

1 Answer 1

1

According to the documentation: You will need to install pillow.

To install pillow: Type this in your terminal

pip install pillow
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.