Re.Vi
Re.Vi
发布于 2024-05-21 / 5 阅读
0
0

python项目打包为exe文件

安装依赖

pip install pyinstaller

How to Install PyInstaller — PyInstaller 6.6.0 documentation

进入需要打包的脚本的目录

cd <script_dir>

打包

pyinstaller main.py --onefile

打包完成后会在当前目录生成两个文件夹,在dist文件夹里会有一个exe文件,就是打包好的可执行文件

参考

How to turn your Python file (.py) into an .exe (Tutorial 2021) (youtube.com)


评论