0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

.pyを.exe化する方法

Last updated at Posted at 2024-10-08

必要な物

  • Pythonファイル .py
  • pip 環境
  • nuitka

インストール

nuitkaをインストールします。

pip install Nuitka 

使い方

exe化したいpythonファイルのパスまで移動する

例/python/test.pyの場合
cd /python/

Nuitkaを実行

nuitka test.py 

オプション

末尾に追加することでそれぞれのオプションを追加できる

黒い画面を出さない
--windows-disable-console
pythonがない環境でも動作する
--standalone
ファイルを一つにまとめる
--onefile
tkinterを使用する
--enable-plugin=tk-inter
*.icoをアイコンとして扱う
--windows-icon-from-ico="*.ico

nuitkaはpythonファイルをc言語としてコンパイルするためプログラムによってはできない場合もある。
特にpython環境がない場合でも実行する場合は注意が必要。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?