You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
# 打包脚本 - 使用PyInstaller创建可执行文件
|
|
|
|
echo "正在安装PyInstaller..."
|
|
pip3 install pyinstaller
|
|
|
|
echo "正在打包数学学习软件..."
|
|
pyinstaller --onefile --windowed --name="数学学习软件" main.py
|
|
|
|
echo "打包完成!可执行文件位于 dist/ 目录中"
|
|
echo "Windows用户请运行 dist/数学学习软件.exe"
|
|
echo "macOS/Linux用户请运行 dist/数学学习软件" |