如何修复.exe文件,该文件是通过将.py转换为.exe使用cx_freeze创建的

时间:2019-06-20 18:38:17

标签: python-3.x executable cx-freeze

我已将一个.py文件转换为.exe。由此创建的exe文件不起作用,它将自动关闭。在该应用程序中,我应该接受两个输入。但是屏幕没有留下来。

我正在使用python 3.6版本。我已经为此使用cx_freeze库。 我已经提到了下面的代码,该代码曾经用来为setup.py

创建.exe。

Setup.py

from cx_Freeze import setup, Executable
setup(name = "html_guid_compare",
    version = "1.0",
    description = "Comparing two htm files for guid difference",
    executables = [Executable(r"htm_guid_compare2.py")]
)

输入代码:

path1 = input("Enter the First folder path:")
path2 = input("Enter the second folder path:")

当单击.exe文件时。没有显示屏幕,屏幕终止。

0 个答案:

没有答案