其实很简单, 用 python -m py_compile file.py python -m py_compile /root/src/{file1,file2}.py编译成pyc文件。 也可以写份脚本来做这事: Code:import py_compile py_compile.compile('path') //path是包括.py文件名的路径 用 python -O -m p ...