4 lines
193 B
Batchfile
4 lines
193 B
Batchfile
@echo off
|
|
echo 正在为Linux打包Python程序...
|
|
docker run --rm -v "%cd%:/src" cdrx/pyinstaller-linux:python3-20231002 "pyinstaller --onefile main.py"
|
|
echo 打包完成!检查 dist/ 目录 |