Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. # コマンド
  2.  
  3. ```sh
  4. pyinstaller xxxx.py --onedir --onefile --noconsole --clean
  5. ```
  6.  
  7. # オプションの意味
  8.  
  9. * ```--onedir``` or ```-D```
  10. * 出力を1ディレクトリにまとめる
  11. * ```--onefile``` or ```-F```
  12. * 出力を1ファイルにまとめる
  13. * ```--noconsole``` or ```-w```
  14. * コンソールを表示しない
  15. * ```--clean```
  16. * ビルド前に前回のキャッシュと出力ディレクトリを削除
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement