今回は、Python スクリプト「timer.py」を「pyinstaller」を使って.exe ファイルに変換する手順を説明します。これにより、Python インタープリタがインストールされていない環境でも、スクリプトを実行可能ですな実行ファイルを作成できます。 timer.pyは前の記事 ...
pythonファイルを配布したいと思ったときに、配布する相手にpythonがインストールされていなかった場合はどうなるでしょうか? 実行できないのです。そこで、今回はpythonファイルを実行ファイル、つまり、exeファイルにする方法をご紹介します。 EXE化する ...
PyInstaller bundles a Python application and all its dependencies into a single package. The user can run the packaged app without installing a Python interpreter or any modules. PyInstaller reads a ...