Browse Source

Update 'README.md'

天问 1 year ago
parent
commit
6867a59c60
1 changed files with 11 additions and 1 deletions
  1. 11 1
      README.md

+ 11 - 1
README.md

@@ -1,3 +1,13 @@
 # pyinstaller
 
-打包exe等各平台版本
+打包exe等各平台版本,适合GUI应用,不是跨平台编译,需要在win打包exe
+
+## Usage
+
+开发依赖
+```
+pip install pyinstaller
+# -F 单个程序, -D 打包成文件夹 -i 指定图标i, -n 指定名字, -w 禁止命令行
+pyinstaller  -F -c  --name xx  main.py
+```
+