いろいろ備忘録日記

主に .NET とか Go とか Flutter とか Python絡みのメモを公開しています。

Pythonメモ-83 (PyInstaller が python 3.7 に対応) (Add support for Python 3.7)

概要

いつもお世話になっている PyInstaller が、最新バージョンの 3.7 に対応したとのこと。

忘れないうちにメモメモ。PyInstaller の バージョン 3.4 から対応となっています。

Python 3.6 の対応は、すごく時間がかかった記憶があったのですが、今回は速かったですね。

コミッターおよびコントリビュータの方々に感謝です。

www.reddit.com

Changelog for PyInstaller — PyInstaller 3.4 documentation

備考

conda では、本日時点 (2018/09/11) ではまだ ver3.4 がありませんでした。

$ conda search pyinstaller
Loading channels: done
# Name                  Version           Build  Channel
pyinstaller                 3.2      py27_vc9_2  conda-forge
pyinstaller                 3.2     py35_vc14_2  conda-forge
pyinstaller                 3.2     py36_vc14_2  conda-forge
pyinstaller               3.2.1      py27_vc9_0  conda-forge
pyinstaller               3.2.1     py35_vc14_0  conda-forge
pyinstaller               3.2.1     py36_vc14_0  conda-forge
pyinstaller                 3.3      py27_vc9_0  conda-forge
pyinstaller                 3.3      py27_vc9_1  conda-forge
pyinstaller                 3.3     py35_vc14_0  conda-forge
pyinstaller                 3.3     py35_vc14_1  conda-forge
pyinstaller                 3.3     py36_vc14_0  conda-forge
pyinstaller                 3.3     py36_vc14_1  conda-forge
pyinstaller               3.3.1      py27_vc9_0  conda-forge
pyinstaller               3.3.1     py35_vc14_0  conda-forge
pyinstaller               3.3.1     py36_vc14_0  conda-forge

pip の方は ver3.4 があります。

$ pip search pyinstaller
PyInstaller (3.4)             - PyInstaller bundles a Python application and all its dependencies into a single package.

過去の記事については、以下のページからご参照下さい。

  • いろいろ備忘録日記まとめ

devlights.github.io

サンプルコードは、以下の場所で公開しています。

  • いろいろ備忘録日記サンプルソース置き場

github.com

github.com