https://docs.python.org/3.9/library/compileall.html#cmdoption-compileall-b
可能是没设置递归编译层数
加-r解决问题
python3 -m compileall -r 100 -b ${target_dir} # -r选项设置递归子目录层数,python3.7默认10
https://docs.python.org/3.9/library/compileall.html#cmdoption-compileall-b
可能是没设置递归编译层数
加-r解决问题
python3 -m compileall -r 100 -b ${target_dir} # -r选项设置递归子目录层数,python3.7默认10