1、nuitka 编译成一个so文件
nuitka3 --module --include-module=target_file_or_dir target_file_or_dir
2、compileall 编译成pyc
python3 -m compileall -b <dir>
# 删除相关的py文件
find <dir> -name '*.py' -type f -print -exec rm {} \;
3、bdist_wheel 打包 whl文件
#需要先编写 setup.py文件
python3 setup.py bdist_wheel
# 安装打包的whl文件
pip install xxx-1.0.1-py3-none-any.whl
标签:文件,compileall,Python,编译成,py,编译,whl,打包
From: https://www.cnblogs.com/LittlePigHo/p/17776806.html