安装库:
pip install pyinstaller
使用方法:
pyinstaller --onefile your_python_file.py
最后在dist文件夹找到exe文件
- 自定义可执行文件的特性
你可以使用一些可选参数来自定义生成的可执行文件的特性。例如,你可以使用 --icon
参数设置生成的可执行文件的图标:
pyinstaller --onefile --icon=your_icon.ico your_python_file.py
你也可以使用 --name
参数设置生成的可执行文件的名称:
pyinstaller --onefile --name=your_app_name your_python_file.py