简体   繁体   English

如果我计划运行一个使用pyautogui的python脚本,它可以一次运行多台计算机还是只能运行一台?

[英]If I plan to run a python script that uses pyautogui can it do multiple computers at once or only one?

Like if the script I uploaded to AWS has 就像我上传到AWS的脚本是否具有

pyautogui.moveTo(0,0) pyautogui.moveTo(0,0)

Can it move the mouse of multiple computers at the same time or no? 它可以同时移动或不移动多台计算机的鼠标吗?

Thanks! 谢谢!

I'm the author of PyAutoGUI. 我是PyAutoGUI的作者。 PyAutoGUI can only run on your single, local machine. PyAutoGUI只能在您的一台本地计算机上运行。 It can't run on AWS or other "headless" setups. 它不能在AWS或其他“无头”设置上运行。 This might be added as a feature in the future, but it currently isn't on the roadmap. 将来可能会将其添加为功能,但目前尚不在路线图上。 PyAutoGUI relies on having a GUI to interact with. PyAutoGUI依赖于与GUI进行交互。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用 pyautogui 进行图像识别:如何一次搜索多个区域? - Image Recongition with pyautogui: How do I search for multiple areas at once? 我如何允许某个类只能在 python 脚本中访问一次? - How do I allow that a certain class can be accessed only once inside a python script? 我如何只运行一次 python 模块的一部分? - How do i run part of a python module only once? python多线程,我如何一次运行多个操作 - python multithreading, how can i run multiple operations at once 如何在 Python 中引用一个目录,使其在多台计算机上工作? - How do I reference a directory in Python so it works on multiple computers? Pyautogui:具有图像识别功能的自动点击器如何制作仅在识别图像时才运行的 function? - Pyautogui : Autoclicker with Image recognition How do I make a function I made only run if an image is recognised? 如何在服务器上运行 pyautogui 机器人? - How can I run a pyautogui bot on a server? 如何使用 pyautogui 指定多个区域? - How do I specify multiple regions with pyautogui? 如何一次运行多个协议? - How do I run multiple protocols at once? 我如何使用 Pyautogui 在屏幕上定位 function 仅在一个应用程序中 window 而不是整个屏幕 - how do i use Pyautogui locate on screen function within only one application window instead of the whole screen
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM