1 批量编译为pyc文件
(1) 编译为pyc文件
python -m compileall /path/to/src
(2) 删除py文件
find /path/to/src -name “*.py” | xargs rm -rf
或者 find /path/to/src -name “*.py” -type f -print -exec rm {} ;
2 批量编译为pyo文件
(1) 编译为pyo文件
python -O -m compileall /path/to/src
或者 python -OO -m compileall /path/to/src
(2) 删除py文件
find /path/to/src -name “*.py” | xargs rm -rf
或者 find /path/to/src -name “*.py” -type f -print -exec rm {} ;
转载请注明:王杭州的个人网页 » 批量编译python文件