python 多进程 阻塞任务怎么同时启动
python 多进程中
运行的任务为不会中断的,会阻塞后面代码运行 怎么同时让这些进程启动且存活
如果能用一个文件实现就不要使用多个文件
http-server
为 node 包 已是全局包
p0 = Process(target=os.system("http-server D:/1")) p1 = Process(target=os.system("http-server D:/2"))
p2 = Process(target=os.system("http-server D:/3"))
p3 = Process(target=os.system("http-server D:/4"))
p0.start()
p1.start()
p2.start()
p3.start()
回答:
用 Event
,先启动多进程等待事件发生,当所有进程准备就绪后,触发事件。
https://docs.python.org/3/lib...
以上是 python 多进程 阻塞任务怎么同时启动 的全部内容, 来源链接: utcz.com/p/937927.html