我已将一个.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文件时。没有显示屏幕,屏幕终止。