質問編集履歴

1

文法の修正

2021/09/20 11:26

投稿

sn_103
sn_103

スコア1

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,4 @@
1
- cx_Freezeを利用してプログラムをexe化しようとしたところ、エラーなくexe化は出来ますが、実行しようとしたところ、以下のエラーが表示されます。Win32GUIが関係しているのかとも思いましたが、修正法も見当がつかないため、ご教授お願い致します。![イメージ説明](8a54baf429feb48ae7ad27a39ba45690.png)
1
+ cx_Freezeを利用してプログラムをexe化しようとしたところ、エラーなくexe化は出来ますが、実行しようとしたところ、以下のエラーが表示されます。Win32GUIが関係しているのかとも思いましたが、修正法も見当がつかないため、ご教授お願い致します。
2
2
 
3
3
 
4
4
 
@@ -28,21 +28,17 @@
28
28
 
29
29
 
30
30
 
31
- packages = ['wx', 'wx.html', 'MeCab', 'matplotlib', 'neologdn', 'regex', 'sentencepiece',
31
+ packages = []
32
-
33
- 'torch', 'unicodedata', 'transformers', 'pymagnitudelight', 'annoy', 'sys']
34
32
 
35
33
  includes = []
36
34
 
37
35
  excludes = ['tkinter']
38
36
 
39
- include_files = ['new.magnitude', 'NEologd']
40
-
41
37
  exe = Executable(script='GUI.py', base=base)
42
38
 
43
39
 
44
40
 
45
- setup(name='Effective_Writing',
41
+ setup(name='test',
46
42
 
47
43
  options={
48
44
 
@@ -52,9 +48,7 @@
52
48
 
53
49
  'includes': includes,
54
50
 
55
- 'excludes': excludes,
51
+ 'excludes': excludes,}},
56
-
57
- 'include_files': include_files}},
58
52
 
59
53
  version='0.1',
60
54