pool.apply_async(self.run_server, args=(self.devices[i], port_list[i])
 
和
class RunServer(threading.Thread):
    def __init__(self, port):
        threading.Thread.__init__(self)
        self.cmd = 'macaca server -p %s --verbose' % port
    def run(self):
        os.system(self.cmd)
 
这两段启动 macaca server port 的代码,我运行没有成功,apply_async 运行时根本没有调用 run_server 方法。还有 macaca server -p %s --verbose 是否需要守护进程去调用,服务会一直保持启动,apply_async 不会回到主进程?
@junhe ,https://github.com/Yinxl/autoui 还是报错 404