4
13

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.

TkinterとMatplotlibが含まれるpythonプログラムをpyinstallerでexeを生成

Last updated at Posted at 2018-06-29

目的

TkinterとMatplotlibライブラリが含まれるpythonプログラムをpyinstallerにてexeを生成します。

環境

Python 3.6.0, Windows 10

前準備

pyinstallerをインストールしますが、2018/6/29現在は開発バージョンのpyinstallerを利用する必要がありました。
そのため、以下のようにしてコマンドプロンプトからpyinstallerをインストールします

> pip install https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz

exe生成

pandas, matplotlibなど事前に利用しているライブラリがある場合はあらかじめpipでインストールしておきます。
そして、

> pyinstaller --onefile --hidden-import=matplotlib --hidden-import=tkinter main.py

とコマンドを打つと対象のpythonファイルをビルドします。そして、distフォルダ内にexeファイルが生成されます。

4
13
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
4
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?