0
0

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 1 year has passed since last update.

【exe化】Python環境構築無しでPythonスクリプトを実行する方法

Posted at

はじめに

会社であるアプリケーションを誰にでも使えるように配布するため、exe化することになりました。
今回は、公式のマニュアルと下記の記事を参考に、

  • exe化の簡単な説明
  • "Pyinstaller"を使用した実行方法

を記載いたしました。

参考
Pyinstaller公式マニュアル
(TECH PLAY)PythonのスクリプトをPyinstallerでexe化する方法

Pythonスクリプトのexe化

Python環境を構築をしなくてもプログラムを実行可能にするもの。

仕組み

Python アプリケーションとそのすべての依存関係を単一のパッケージにバンドルする。

注意点

  • 64bit OS環境で作成したexeファイルは32bitOSで利用不可。
  • Python 3.7 以降をサポート
  • 作成したexeファイルは、他のOSで実行できない

手順

①Pyinstallerのインストール

pip install pyinstaller

②作業フォルダに移動

cd ○○

③実行

pyinstaller <Pythonファイル名> --onefile

④distフォルダの中にexeファイルができる(exe化完了)

おわりに

exe化とても簡単ですね。これだけでアプリケーションを配布できるのは便利です。
余談だけれども、「エグゼ化」って口頭で聞いただけだと、なんかすごくかっこよい。

閲覧ありがとうございました。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?