CursorTokenLogin/README.md
2026-04-27 17:24:17 +08:00

14 lines
408 B
Markdown
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.

python -m PyInstaller -w -F main.py
<br />
# 编译成exe
python -m PyInstaller build.spec --clean
<br />
# 关于 Win + Mac 同时构建(后续)
- PyInstaller 不能在 Windows 本机直接产出 macOS 程序。
- 当前命令在 Windows 只能生成 `.exe`,在 macOS 才能生成 `.app`
- 后续可用 GitHub Actions 做双平台构建:本地打 Windows云端 `macos-latest` 打 macOS。