Files
nl-tools/build.sh
2025-12-11 09:47:00 +08:00

29 lines
793 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/bin/bash
echo ""
echo "╔══════════════════════════════════════════════╗"
echo "║ 奶酪云工具箱 - macOS/Linux 打包 ║"
echo "╚══════════════════════════════════════════════╝"
echo ""
# 检查 Python
if ! command -v python3 &> /dev/null; then
echo "❌ 未找到 Python3请先安装"
exit 1
fi
# 安装依赖
echo "📦 安装/更新依赖..."
pip3 install -r requirements.txt
pip3 install pyinstaller
# 执行打包
echo ""
echo "🔨 开始打包..."
python3 build_app.py --platform current
echo ""
echo "✅ 打包完成!"
echo "📁 输出目录: dist/"