py脚本打包py文件

# 假设我们有一个非常小的Python脚本,我们想要将其转换为可执行文件
# 首先,确保你的脚本是Python 2.7或Python 3.x兼容的

# Python脚本内容(example_script.py):
print("Hello, World!")

# 使用PyInstaller将Python脚本转换为可执行文件
# 安装PyInstaller:
# pip install pyinstaller

# 运行PyInstaller,创建一个单文件的可执行程序
# 注意:--onefile选项会创建一个单文件的可执行程序
pyinstaller_command = "pyinstaller --onefile 1.py"

# 执行命令
import subprocess
subprocess.run(pyinstaller_command, shell=True)

 

评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注