質問編集履歴

1

追加

2020/09/24 00:38

投稿

person
person

スコア223

test CHANGED
File without changes
test CHANGED
@@ -4,7 +4,35 @@
4
4
 
5
5
 
6
6
 
7
- pyファイルでは実行できたのですが、exe化したら実行できませんでした(fatal error detected)
7
+ pyファイルでは実行できたのですが、exe化したら実行できませんでした。
8
+
9
+
10
+
11
+ 1. noconsoleでexe化
12
+
13
+ (1) pyinstaller --noconsole --onefile dnd.py
14
+
15
+ (2) dnd.exeをdnd.pyと同じ位置へ移動(多分意味ないとは思うが念のため)
16
+
17
+ (3) 下図のエラー
18
+
19
+ ![イメージ説明](6c5523ac3cdf3c0f1b1cc318d6ca47b5.png)
20
+
21
+
22
+
23
+ 2. noconsoleなしでexe化
24
+
25
+ (1) pyinstaller --onefile dnd.py
26
+
27
+ (2) dnd.exeをdnd.pyと同じ位置へ移動(多分意味ないとは思うが念のため)
28
+
29
+ (3) 下図のエラー
30
+
31
+ ![イメージ説明](33e4f8f6b0e160c765d93c090e6ba739.png)
32
+
33
+
34
+
35
+
8
36
 
9
37
 
10
38