参考文章: https://blog.csdn.net/loyachen/article/details/52167124 安装cpulimit apt-get install cpulimit 使用 两种方法,一个是直接在limit情况下运行: cpulimit -l 50 python test.py # -l 后面跟的是cpu利用率上限 另一种是先运行起来了,再根据进程号限制: cpulimit -l 50 -p 1234 # 50是cpu利用率,1234是进程号