demo/python/common/packet.txt

13 lines
373 B
Plaintext
Raw Normal View History

2025-11-22 18:09:37 +08:00
# installer
pip install PyInstaller -i https://mirrors.aliyun.com/pypi/simple/
# only windows without console
python.exe -m PyInstaller --onefile --windowed --name exe_name .\source_mame.py
# windows with console
python.exe -m PyInstaller --onefile --console --name exe_name .\source_name.py
# basic
python.exe -m PyInstaller --onefile --name exe_name .\source_name.py