1
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?

Nuitkaでpythonをexe化(メモ)

Last updated at Posted at 2024-02-02

基本的にはこれらの記事を参考にしました。
実行の部分で手こずったので注意点をまとめます。

↓基本的にはこの記事を見ればいい。

↓実行の部分に関してはこちらを参考にした。

インストール

pip install nuitka

実行

exe化したいpyファイルまで行く。

cd フルパス

基本の形

python -m nuitka ファイル名.py

何回かyes/noを聞かれるのでyesを選択しましょう。
僕はこの形でないと動かなかったのでそこを忘れないように記事を書きましたね。

オプション

--windows-disable-console:黒い画面を出さない

--standalone:Python環境がないところでも動くようにする

--onefile:ひとつのexeファイルにまとめる

--enable-plugin=tk-inter:Tkinterをつかうおまじない

--windows-icon-from-ico=".ico”:.icoファイルをアイコンとして使用

オプションを付けての実行例

python -m nuitka --windows-disable-console --onefile --enable-plugin=tk-inter ファイル名.py
1
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
1
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?