voon
voon

Reputation: 13

Is there an easy way to use pyautogui?

I made a python program with pyautogui. I want to release this to my friends. But they seldom want to download python and pyautogui. I wanna know how to run this without downloading these programs. Or can you explain me an easier way to use pyautogui for my friends (without using pip).

Upvotes: 1

Views: 227

Answers (1)

Mohnish
Mohnish

Reputation: 1008

You can create a standalone application so that they can run it on their device.
for Windows you can use Py2exe
for MacOs you can use Py2app

Upvotes: 3

Related Questions