如何使用 pyarmor 将多个 python 文件编译成单个 .exe 文件?

How to compile multiple python files into single .exe file using pyarmor?

如何使用pyarmor将多个python文件编译成单个.exe文件?
我目前正在使用:
pyarmor pack --clean -e "--onefile " file.py 但它只适用于一个文件:/

您可以使用 --recursive 参数,它将递归地查看您在目录中的所有 py 文件并混淆它们。

pyarmor pack --clean -e "--onefile " -x " --recursive" entry.py

entry.py一定是你的入口脚本,也就是你执行的文件。