You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
167 B
Python

# build.py
import PyInstaller.__main__
PyInstaller.__main__.run([
'ups-test.py', # Python脚本文件名
'--onefile', # 生成单个可执行文件
])