回答編集履歴
1
回答不足
answer
CHANGED
@@ -5,6 +5,11 @@
|
|
5
5
|
|
6
6
|
root=tkinter.Tk()
|
7
7
|
root.withdraw()
|
8
|
-
messagebox.showwarning('exe化テスト'
|
8
|
+
messagebox.showwarning('exe化テスト')
|
9
|
-
root.
|
9
|
+
root.destroy()
|
10
|
-
```
|
10
|
+
```
|
11
|
+
これを、pyinstallerで、
|
12
|
+
```shell
|
13
|
+
pyinstaller /path/to/script -w
|
14
|
+
```
|
15
|
+
とするとできるかと思います。
|