使用 PyInstaller 将 Python 代码打包成独立可执行文件
# 安装 PyInstaller
pip install pyinstaller
# 使用 PyInstaller 打包 Python 脚本
pyinstaller --onefile your_script.py
这段代码展示了如何安装 PyInstaller 以及如何使用它将名为 your_script.py
的 Python 脚本打包成一个独立的可执行文件。--onefile
参数指示 PyInstaller 创建单一的打包文件,这对于发布为独立程序非常有用。
评论已关闭