Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想运行一个很长的工作 python 脚本,它在 CPU 上很困难。有没有办法查明用户是否在积极工作?(移动鼠标和键盘?)
编辑:仅在 Windows 上运行。优先级不是个好主意,仍然占用大量CPU。
如果您以低优先级 ( nice 20 python foo.py) 运行脚本,它将一直运行,但不会对较高优先级的进程产生太大影响(这将是所有进程,因为 20 是最低优先级)。
nice 20 python foo.py