7
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PythonファイルExe化ソフトPyInstallerの使い方メモ

Posted at

下記ページに書いてある通りそのままです。
オプションだけ備忘録として残します。
参考:Pyinstaller で Python スクリプトを Windows で実行可能な .exe にする

インストール
    pip install pyinstaller

使い方
    pyinstaller.exe [python file]
    同ディレクトリのdist以下にexeファイル(他dllも)が生成される

オプション リンク
    --onefile:dllをexeファイル一つにまとめる
    --clean:前回ファイルを削除してから実行
    --windowed:実行時windowが開かないようにする

補足
メモとった当時はpython3.6.1非対応でしたが今は3.7までサポートしています。
reddit

7
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?